aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/tests/echo/main.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
commitd534a56d95bca7bdd812be024d9eacba4734e2b7 (patch)
treef9b98ee2b80e645a7b54e7934882be6c9f73c165 /c++-qt/tests/echo/main.cpp
parent61ccc86fdf06f12cb72a8b7e65286f812cf62154 (diff)
downloadlibgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.gz
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.bz2
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.xz
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.zip
Many changes: tabconv'd the C++ code, added a license, BSD, and docs.
Diffstat (limited to 'c++-qt/tests/echo/main.cpp')
-rw-r--r--c++-qt/tests/echo/main.cpp15
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
5int main( int argc, char *argv[] ) 12int 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