diff options
Diffstat (limited to 'tqtinterface/qt4/tools/designer/examples/vcr/main.cpp')
-rw-r--r-- | tqtinterface/qt4/tools/designer/examples/vcr/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tqtinterface/qt4/tools/designer/examples/vcr/main.cpp b/tqtinterface/qt4/tools/designer/examples/vcr/main.cpp new file mode 100644 index 0000000..71f04f8 --- /dev/null +++ b/tqtinterface/qt4/tools/designer/examples/vcr/main.cpp @@ -0,0 +1,10 @@ +#include <tqapplication.h> +#include "vcr.h" + +int main( int argc, char ** argv ) +{ + TQApplication app( argc, argv ); + Vcr *vcr = new Vcr; + vcr->show(); + return app.exec(); +} |