diff options
Diffstat (limited to 'tools/designer/examples/multiclip/main.cpp')
-rw-r--r-- | tools/designer/examples/multiclip/main.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/designer/examples/multiclip/main.cpp b/tools/designer/examples/multiclip/main.cpp new file mode 100644 index 0000000..7f3aeb1 --- /dev/null +++ b/tools/designer/examples/multiclip/main.cpp @@ -0,0 +1,25 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for Qt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include <qapplication.h> +#include "multiclip.h" + + +int main( int argc, char *argv[] ) +{ + QApplication app( argc, argv ); + + MulticlipForm clippingForm; + app.setMainWidget( &clippingForm ); + clippingForm.show(); + + return app.exec(); +} + + |