Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <QtGui>
00025 #include "BRMDemoDlg.h"
00026
00027 #define ORG_DOMAIN "feig.de"
00028 #define APP_NAME "BRMDemo"
00029
00030 int main(int argc, char * argv[])
00031 {
00032
00033 Q_INIT_RESOURCE(res);
00034
00035 QApplication app(argc, argv);
00036
00037 app.setOrganizationDomain(ORG_DOMAIN);
00038 app.setApplicationName(APP_NAME);
00039
00040 BRMDemoDlg win;
00041 win.setWindowIcon(QPixmap(":/images/obid.png"));
00042
00043
00044 win.show();
00045
00046
00047 win.resize(866, 580);
00048
00049 return app.exec();
00050 }
00051