6.6.1 original

This commit is contained in:
kleuter
2023-12-04 18:42:35 +01:00
parent 9bf343ceed
commit 8490fae44c
607 changed files with 15608 additions and 14647 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -3,14 +3,16 @@
/*!
\example ipc/localfortuneclient
\title Local Fortune Client Example
\examplecategory {Connectivity}
\title Local Fortune Client
\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
\l{Local Fortune Server Example}.
\l{Local Fortune Server} example.
\image localfortuneclient-example.png Screenshot of the Local Fortune Client example
\image localfortuneclient-example.png Screenshot of the Local Fortune Client
example
*/

View File

@ -3,13 +3,14 @@
/*!
\example ipc/localfortuneserver
\title Local Fortune Server Example
\examplecategory {Connectivity}
\title Local Fortune Server
\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
\l{Local Fortune Client Example}
\l{Local Fortune Client} example.
\image localfortuneserver-example.png Screenshot of the Local Fortune Server example
*/

View File

@ -3,10 +3,11 @@
/*!
\example ipc/sharedmemory
\title Shared Memory Example
\examplecategory {Data Processing & I/O}
\title IPC: Shared Memory
\ingroup examples-ipc
\brief Demonstrates doing inter-process communication using shared memory with
the QSharedMemory class.
\brief Demonstrates how to share image data between different processes
using the Shared Memory IPC mechanism.
The Shared Memory example shows how to use the QSharedMemory class
to implement inter-process communication using shared memory. To