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.
tqt3/examples/chart/main.cpp

22 lines
400 B

#include <ntqapplication.h>
#include "chartform.h"
int main( int argc, char *argv[] )
{
TQApplication app( argc, argv );
TQString filename;
if ( app.argc() > 1 ) {
filename = app.argv()[1];
if ( !filename.endsWith( ".cht" ) )
filename = TQString::null;
}
ChartForm *cf = new ChartForm( filename );
app.setMainWidget( cf );
cf->show();
return app.exec();
}