Go to the documentation of this file.00001 #include <QtGui>
00002 #include "FEUSBDemoDlg.h"
00003
00004 #define ORG_DOMAIN "feig.de"
00005 #define APP_NAME "FEUSBDemo"
00006
00007 int main(int argc, char * argv[])
00008 {
00009
00010 Q_INIT_RESOURCE(res);
00011
00012 QApplication app(argc, argv);
00013
00014 app.setOrganizationDomain(ORG_DOMAIN);
00015 app.setApplicationName(APP_NAME);
00016
00017 FEUSBDemoDlg win;
00018 win.setWindowIcon(QPixmap(":/images/obid.png"));
00019 win.show();
00020
00021 return app.exec();
00022 }
00023