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