Added \ingroup and \brief qdoc tags to IPC examples.

Change-Id: Ic8fb033597340bfb44ee7e0ca7a3763b36c097aa
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
This commit is contained in:
Samuel Rødal 2012-11-30 17:38:21 +01:00 committed by The Qt Project
parent bc0cbdb981
commit 36e744845d
3 changed files with 7 additions and 0 deletions

View File

@ -28,6 +28,8 @@
/*!
\example ipc/localfortuneclient
\title Local Fortune Client Example
\ingroup examples-ipc
\brief Demonstrates using QLocalSocket for a simple local service client.
The Local Fortune Client example shows how to create a client for a simple
local service using QLocalSocket. It is intended to be run alongside the

View File

@ -28,6 +28,8 @@
/*!
\example ipc/localfortuneserver
\title Local Fortune Server Example
\ingroup examples-ipc
\brief Demonstrates using QLocalServer and QLocalSocket for serving a simple local service.
The Local Fortune Server example shows how to create a server for a simple
local service. It is intended to be run alongside the

View File

@ -28,6 +28,9 @@
/*!
\example ipc/sharedmemory
\title Shared Memory Example
\ingroup examples-ipc
\brief Demonstrates doing inter-process communication using shared memory with
the QSharedMemory class.
The Shared Memory example shows how to use the QSharedMemory class
to implement inter-process communication using shared memory. To