Inflict Qt4 upon the codebase
[ipdf/code.git] / src / tests / qtapp.cpp
diff --git a/src/tests/qtapp.cpp b/src/tests/qtapp.cpp
new file mode 100644 (file)
index 0000000..126c1f3
--- /dev/null
@@ -0,0 +1,16 @@
+
+#include <QApplication>
+#include <QWidget>
+
+int main(int argc, char *argv[])
+{
+    QApplication app(argc, argv);
+
+    QWidget window;
+
+    window.resize(250, 150);
+    window.setWindowTitle("Simple example");
+    window.show();
+
+    return app.exec();
+}

UCC git Repository :: git.ucc.asn.au