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