diff options
author | Samuel Rødal <samuel.rodal@digia.com> | 2012-11-30 17:38:21 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-12-01 08:31:04 +0100 |
commit | 36e744845d0dc74732613431332c3665c4c149ea (patch) | |
tree | fa46b4fc153d91ccfc5021a800bbd3b375510a6b /doc | |
parent | bc0cbdb9815082901d7aad11cb739615793b2012 (diff) | |
download | qtbase-36e744845d0dc74732613431332c3665c4c149ea.tar.gz |
Added \ingroup and \brief qdoc tags to IPC examples.
Change-Id: Ic8fb033597340bfb44ee7e0ca7a3763b36c097aa
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/examples/localfortuneclient.qdoc | 2 | ||||
-rw-r--r-- | doc/src/examples/localfortuneserver.qdoc | 2 | ||||
-rw-r--r-- | doc/src/examples/sharedmemory.qdoc | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/examples/localfortuneclient.qdoc b/doc/src/examples/localfortuneclient.qdoc index 1275376c64..66c4589115 100644 --- a/doc/src/examples/localfortuneclient.qdoc +++ b/doc/src/examples/localfortuneclient.qdoc @@ -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 diff --git a/doc/src/examples/localfortuneserver.qdoc b/doc/src/examples/localfortuneserver.qdoc index 2899d4e0bd..91e0af301d 100644 --- a/doc/src/examples/localfortuneserver.qdoc +++ b/doc/src/examples/localfortuneserver.qdoc @@ -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 diff --git a/doc/src/examples/sharedmemory.qdoc b/doc/src/examples/sharedmemory.qdoc index f2263d523b..6970a9c7d2 100644 --- a/doc/src/examples/sharedmemory.qdoc +++ b/doc/src/examples/sharedmemory.qdoc @@ -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 |