diff options
Diffstat (limited to '')
-rw-r--r-- | c++-qt/tests/echo/main.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/c++-qt/tests/echo/main.cpp b/c++-qt/tests/echo/main.cpp index 43ceae4..4925fc6 100644 --- a/c++-qt/tests/echo/main.cpp +++ b/c++-qt/tests/echo/main.cpp | |||
@@ -1,14 +1,21 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | #include <QApplication> | 8 | #include <QApplication> |
2 | 9 | ||
3 | #include "mainwnd.h" | 10 | #include "mainwnd.h" |
4 | 11 | ||
5 | int main( int argc, char *argv[] ) | 12 | int main( int argc, char *argv[] ) |
6 | { | 13 | { |
7 | QApplication app( argc, argv ); | 14 | QApplication app( argc, argv ); |
8 | 15 | ||
9 | MainWnd wnd; | 16 | MainWnd wnd; |
10 | wnd.show(); | 17 | wnd.show(); |
11 | 18 | ||
12 | return app.exec(); | 19 | return app.exec(); |
13 | } | 20 | } |
14 | 21 | ||