You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
335 B
15 lines
335 B
13 years ago
|
|
||
|
#include "viewer.h"
|
||
|
|
||
13 years ago
|
#include <ntqapplication.h>
|
||
13 years ago
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
|
TQApplication app( argc, argv );
|
||
|
Viewer * textViewer = new Viewer();
|
||
|
textViewer->setCaption( "TQt Example - Simple TQFont Demo" );
|
||
|
app.setMainWidget( textViewer );
|
||
|
textViewer->show();
|
||
|
return app.exec();
|
||
|
}
|