main.cpp
Go to the documentation of this file.
00001 /*-------------------------------------------------------
00002 |                                                       |
00003 |                  main.cpp                   |
00004 |                                                       |
00005 ---------------------------------------------------------
00006 
00007 Copyright  2007         FEIG ELECTRONIC GmbH, All Rights Reserved.
00008                                                 Lange Strasse 4
00009                                                 D-35781 Weilburg
00010                                                 Federal Republic of Germany
00011                                                 phone    : +49 6471 31090
00012                                                 fax      : +49 6471 310999
00013                                                 e-mail   : info@feig.de
00014                                                 Internet : http://www.feig.de
00015                                         
00016 Author                  :       Benjamin Stadin
00017 Begin                   :       11.12.2006
00018 
00019 Version                 :       01.00.00 / 01.12.2007 / Benjamin Stadin
00020 
00021 Operation Systems       :       Linux
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     // Initialize main dialog window
00033     Q_INIT_RESOURCE(res);
00034      // Create QT application object
00035     QApplication app(argc, argv);
00036     // add app information
00037     app.setOrganizationDomain(ORG_DOMAIN);
00038     app.setApplicationName(APP_NAME);
00039     
00040     BRMDemoDlg win;
00041     win.setWindowIcon(QPixmap(":/images/obid.png"));
00042     //layout.addWidget(&t);
00043     
00044     win.show();
00045     // The resize event will set the table and hex data widget to their correct size
00046     // Size must be different than defined in the ui (annoying...)
00047     win.resize(866, 580);
00048     // Start app loop
00049     return app.exec();
00050 }
00051 


maggie_rfid_drivers
Author(s): Raul Perula-Martinez
autogenerated on Mon Sep 14 2015 03:05:31