David's final changes: more profiler features, fixes.
[ipdf/code.git] / src / tests / qtapp.cpp
1
2 #include <QApplication>
3 #include <QWidget>
4
5 int main(int argc, char *argv[])
6 {
7     QApplication app(argc, argv);
8
9     QWidget window;
10
11     window.resize(250, 150);
12     window.setWindowTitle("Simple example");
13     window.show();
14
15     return app.exec();
16 }

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