You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rst/tutorials/dynamic_types.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ This tutorial focuses on how to send the data type information using Fast DDS Dy
22
22
More specifically, this tutorial implements a DDS Publisher configured to send its data type, a DDS Subscriber that collects the data type and is able to read the incoming data, and a DDS Recorder is launched to save all the data published on the network.
23
23
For more information about how to create the workspace with a basic DDS Publisher and a basic DDS Subscriber, please refer to `Writing a simple C++ publisher and subscriber application <https://fast-dds.docs.eprosima.com/en/latest/fastdds/getting_started/simple_app/simple_app.html>`_ .
24
24
25
-
The source code of this tutorial can be found in the public |eddsrecord| `GitHub repository <https://github.com/eProsima/DDS-Record-Replay/tree/main/resources/dds/TypeLookupService>`_ with an explanation of how to build and run it.
25
+
The source code of this tutorial can be found in the public |eddsrecord| `GitHub repository <https://github.com/eProsima/DDS-Record-Replay/tree/v0.3.0/resources/dds/TypeLookupService>`_ with an explanation of how to build and run it.
26
26
27
27
.. warning::
28
28
@@ -68,18 +68,18 @@ Data types
68
68
69
69
At the moment, there are two data types that can be used:
This section explains the C++ source code of the DDS Publisher, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/main/resources/dds/TypeLookupService>`_.
82
+
This section explains the C++ source code of the DDS Publisher, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/v0.3.0/resources/dds/TypeLookupService>`_.
83
83
84
84
The private data members of the class defines the DDS Topic, ``DataTypeKind``, DDS Topic type and DynamicType.
85
85
The ``DataTypeKind`` defines the type to be used by the application (``HelloWorld`` or ``Complete``).
@@ -151,7 +151,7 @@ The DDS Subscriber is acting as a client of types, i.e. the subscriber will not
151
151
Examining the code
152
152
==================
153
153
154
-
This section explains the C++ source code of the DDS Subscriber, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/main/resources/dds/TypeLookupService>`_.
154
+
This section explains the C++ source code of the DDS Subscriber, which can also be found `here <https://github.com/eProsima/DDS-Record-Replay/blob/v0.3.0/resources/dds/TypeLookupService>`_.
155
155
156
156
The private data members of the class defines the DDS Topic, DDS Topic type and DynamicType.
0 commit comments