Cyclone ISO C++ API Reference Guide
|
The examples source code can be found in the examples folder of your CXX installation. The descriptions below summarize what each example demonstrates. Towards the bottom of the page you will find instructions on how to build and run the examples.
The basic hello example is used to illustrate the necessary steps to setup DCPS entities.
It consists of 2 executables:
The publisher sends a single Hello World sample. The sample contains 2 fields :
When the subscriber receives the sample, it displays the userID field and the message field.
To build the example simply do
cd share/CycloneDDS_CXX_API/examples/helloworld mkdir build cd build cmake -DCMAKE_PREFIX_PATH="<idlpp-cxx install path>/lib/cmake/Idlpp-cxx;<CycloneDDS install path>/lib/cmake/CycloneDDS" .. cmake --build .
Most of our examples are provided in publisher and subscriber form. They reside in their respective folder within each example directory. It is recommended that you start these from different terminals and the working directory must be writeable.
This example does not require any options to run.