You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
553 B
27 lines
553 B
/*
|
|
*/
|
|
|
|
/*! \page networkprotocol-example.html
|
|
|
|
\ingroup network-examples
|
|
|
|
\title A simple NNTP implementation
|
|
|
|
This example shows how to implement your own QNetworkProtocol. The
|
|
protocol that was chosen for this example is NTTP. Please note that this
|
|
implementation is very simple since it is designed to be an example. It
|
|
should not be used as a real NNTP implemention.
|
|
|
|
<hr>
|
|
|
|
Header file (nntp.h):
|
|
|
|
\include network/networkprotocol/nntp.h
|
|
|
|
<hr>
|
|
|
|
Implementation (nntp.cpp):
|
|
|
|
\include network/networkprotocol/nntp.cpp
|
|
*/
|