From b35406feb0d11c6022c58ae485e9864641b7ff9c Mon Sep 17 00:00:00 2001 From: Jens Thiele Date: Mon, 18 Dec 2006 15:45:07 +0000 Subject: [PATCH] docu updates --- doc/index.doc | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/doc/index.doc b/doc/index.doc index b9caffa..874f67d 100644 --- a/doc/index.doc +++ b/doc/index.doc @@ -17,9 +17,7 @@ The input for the code generator is standard C++ code \ref notes4 "[4]" and you mark the procedures you want to expose to other processes. Because the interface is described in C++ directly there is no need for a interface description language (IDL, \ref notes5 "[5]"). - It then generates the client and server stubs needed. - \par - The exported procedures can be grouped. Each group maps to two classes (cmd_group_... and cmd_group_..._client) where the cmd_group_..._client class provides the interface to call remote procedures. Each remote procedure maps to a method of this class and the constructor takes a connection object establishing the binding to the remote side. For each group the code generator is called and generates 6 output files: group_common.hxx, group_common.cpp, group_client.hxx, group_client.cpp, group_server.hxx, group_server.cpp. The _common files are used by client and server whereas the _client files contain the client stub code (the cmd_group_..._client class) and the _server files the server stub code. + The code generator is used to create the client and server stubs for the marked procedures. The procedures can be grouped and each group maps to two classes (cmd_group_... and cmd_group_..._client). The cmd_group_..._client class provides the interface to call remote procedures. Each remote procedure maps to a method of this class and the constructor takes a connection object establishing the binding to the remote side. For each group the code generator is called and generates 6 output files: group_common.hxx, group_common.cpp, group_client.hxx, group_client.cpp, group_server.hxx, group_server.cpp. The _common files are used by client and server whereas the _client files contain the client stub code (the cmd_group_..._client class) and the _server files the server stub code. \par To simplify the build process a Makefile snippet is provided that allows to create a server program and a client library (including a corresponding .pc file) using the autotools easily. \section install_sec Installation -- 1.7.1