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