Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

main.cpp

Go to the documentation of this file.
00001 #include "gsmtool.h"
00002 #ifdef QWS
00003 #include <qpe/qpeapplication.h>
00004 #else
00005 #include <qapplication.h>
00006 #endif
00007 
00008 int main( int argc, char ** argv )
00009 {
00010 #ifdef QWS
00011     QPEApplication a( argc, argv );
00012 
00013     GSMTool mw;
00014     a.showMainWidget( &mw );
00015 #else
00016     QApplication a( argc, argv );
00017 
00018     GSMTool mw;
00019     a.setMainWidget( &mw );
00020     mw.show();
00021 #endif
00022     return a.exec();
00023 }

Generated on Sat Nov 5 16:15:25 2005 for OPIE by  doxygen 1.4.2