summaryrefslogtreecommitdiffstats
path: root/examples/network/infoprotocol/infoserver/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/infoprotocol/infoserver/main.cpp')
-rw-r--r--examples/network/infoprotocol/infoserver/main.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/network/infoprotocol/infoserver/main.cpp b/examples/network/infoprotocol/infoserver/main.cpp
new file mode 100644
index 0000000..fd0e8e3
--- /dev/null
+++ b/examples/network/infoprotocol/infoserver/main.cpp
@@ -0,0 +1,22 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include <qapplication.h>
+
+#include "server.h"
+
+int main( int argc, char** argv )
+{
+ QApplication app( argc, argv );
+ Q_UINT16 port = ( argc > 1 ) ? QString( argv[ 1 ] ).toInt() : infoPort;
+ ServerInfo info( port, 0, "server info" );
+ app.setMainWidget( &info );
+ info.show();
+ return app.exec();
+}