diff options
Diffstat (limited to '')
-rw-r--r-- | c++-qt/tests/echo/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/c++-qt/tests/echo/main.cpp b/c++-qt/tests/echo/main.cpp new file mode 100644 index 0000000..43ceae4 --- /dev/null +++ b/c++-qt/tests/echo/main.cpp | |||
@@ -0,0 +1,14 @@ | |||
1 | #include <QApplication> | ||
2 | |||
3 | #include "mainwnd.h" | ||
4 | |||
5 | int main( int argc, char *argv[] ) | ||
6 | { | ||
7 | QApplication app( argc, argv ); | ||
8 | |||
9 | MainWnd wnd; | ||
10 | wnd.show(); | ||
11 | |||
12 | return app.exec(); | ||
13 | } | ||
14 | |||