home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / examples / fonts / simple-qfont-demo / simple-qfont-demo.cpp < prev    next >
C/C++ Source or Header  |  2001-10-11  |  341b  |  16 lines

  1. /* $Id$ */
  2.  
  3. #include "viewer.h"
  4.  
  5. #include <qapplication.h>
  6.  
  7. int main( int argc, char **argv )
  8. {
  9.     QApplication app( argc, argv );
  10.     Viewer * textViewer = new Viewer();
  11.     textViewer->setCaption( "Qt Example - Simple QFont Demo" );
  12.     app.setMainWidget( textViewer );
  13.     textViewer->show();
  14.     return app.exec();
  15. }                  
  16.