File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2059,7 +2059,7 @@ void dds_topic_examples()
2059
2059
std::string idl_file = " <path_to_idl>.idl" ;
2060
2060
std::string type_name = " YourType" ;
2061
2061
std::vector<std::string> include_paths;
2062
- include_paths.push_back (" <path_to_included_idl>. idl" );
2062
+ include_paths.push_back (" <path/to/folder/containing/included/ idl/files> " );
2063
2063
2064
2064
// Retrieve the instance of the desired type
2065
2065
DynamicTypeBuilder::_ref_type dyn_type_builder =
Original file line number Diff line number Diff line change 7
7
Dynamic Types IDL Parsing
8
8
=========================
9
9
10
- *Fast DDS * supports the implementation of |DynamicTypes | for parsing IDL files at runtime to generate
11
- dynamic data types. The |DynamicTypeBuilderFactory::create_type_w_uri | API allows users to provide a URI
12
- pointing to an IDL file. Fast DDS will process the file and return the corresponding DynamicTypeBuilder,
13
- which can then be used to create a DynamicType.
14
-
15
- This feature enables applications to dynamically load type definitions from IDL files instead of relying
16
- solely on pre-generated types or XML profiles. This enhances flexibility, as new data types can be introduced
17
- without modifying and recompiling the application.
10
+ *Fast DDS * supports the implementation of |DynamicTypes | for parsing IDL files at runtime to generate dynamic data types.
11
+ The |DynamicTypeBuilderFactory::create_type_w_uri | API allows users to provide a URI pointing to an IDL file.
12
+ Fast DDS will process the file and return the corresponding DynamicTypeBuilder, which can then be used to create a
13
+ DynamicType.
14
+
15
+ This feature enables applications to dynamically load type definitions from IDL files instead of relying solely on
16
+ pre-generated types or XML profiles.
17
+ This enhances flexibility, as new data types can be introduced without modifying and recompiling the application.
18
18
19
19
Type definition
20
20
^^^^^^^^^^^^^^^
You can’t perform that action at this time.
0 commit comments