summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/embedding/qtembed/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/docs/embedding/qtembed/main.cpp')
-rw-r--r--kjsembed/docs/embedding/qtembed/main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/kjsembed/docs/embedding/qtembed/main.cpp b/kjsembed/docs/embedding/qtembed/main.cpp
new file mode 100644
index 00000000..b2d7d3d1
--- /dev/null
+++ b/kjsembed/docs/embedding/qtembed/main.cpp
@@ -0,0 +1,18 @@
+//
+// Author: Ian Reinhart Geiser <geiseri@kde.org>, (C) 2004
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#include <qapplication.h>
+#include "posviewimp.h"
+
+int main ( int argc, char ** argv )
+{
+ QApplication app( argc, argv );
+ POSViewImp *view = new POSViewImp;
+ app.setMainWidget(view);
+ view->show();
+ return app.exec();
+}