summaryrefslogtreecommitdiffstats
path: root/examples/network/networkprotocol/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/networkprotocol/main.cpp')
-rw-r--r--examples/network/networkprotocol/main.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/examples/network/networkprotocol/main.cpp b/examples/network/networkprotocol/main.cpp
new file mode 100644
index 000000000..ce4d90e87
--- /dev/null
+++ b/examples/network/networkprotocol/main.cpp
@@ -0,0 +1,29 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include <qapplication.h>
+#include <qnetwork.h>
+
+#include "nntp.h"
+#include "view.h"
+
+int main( int argc, char **argv )
+{
+ TQApplication a( argc, argv );
+
+ qInitNetworkProtocols();
+ TQNetworkProtocol::registerNetworkProtocol( "nntp", new TQNetworkProtocolFactory<Nntp> );
+
+ View v;
+ v.resize( 600, 600 );
+ v.show();
+ a.setMainWidget( &v );
+
+ return a.exec();
+}