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.
experimental/tqtinterface/qt4/qmake/examples/precompile/main.cpp

19 lines
376 B

14 years ago
#include <tqapplication.h>
#include <tqpushbutton.h>
#include <tqlabel.h>
#include "myobject.h"
#include "mydialog.h"
int main(int argc, char **argv)
{
TQApplication app(argc, argv);
MyObject obj;
MyDialog dia;
app.setMainWidget( &dia );
dia.connect( dia.aButton, TQT_SIGNAL(clicked()), TQT_SLOT(close()) );
dia.show();
return app.exec();
}