summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/src/examples/localfortuneclient.qdoc2
-rw-r--r--doc/src/examples/localfortuneserver.qdoc2
-rw-r--r--doc/src/examples/sharedmemory.qdoc3
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