All Classes Namespaces Files Functions Variables Enumerations Enumerator
programs/UrgPorts/main.cpp
Go to the documentation of this file.
00001 
00010 #include "UrgPortsWidget.h"
00011 #include <QApplication>
00012 
00013 
00015 int main(int argc, char *argv[])
00016 {
00017   QApplication app(argc, argv);
00018 
00019   // ロケールの設定
00020   // !!!
00021 
00022   // アプリケーションの起動
00023   UrgPortsWidget window;
00024   window.show();
00025   return app.exec();
00026 }