We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 763aebc commit 5a39027Copy full SHA for 5a39027
1 file changed
fastdds_python/src/swig/fastdds.i
@@ -106,8 +106,13 @@ bool has_statistics();
106
#define FASTDDS_DEPRECATED_UNTIL(major, entity_name, msg)
107
#define FASTDDS_TODO_BEFORE(major, minor, msg)
108
109
-// Defined template for std::vector<std::string>
+// Defined template for some vector containers.
110
%template(StringVector) std::vector<std::string>;
111
+%template(uint8_t_vector) std::vector<uint8_t>;
112
+%template(uint16_t_vector) std::vector<uint16_t>;
113
+%template(int32_t_vector) std::vector<int32_t>;
114
+%template(uint32_t_vector) std::vector<uint32_t>;
115
+%template(uint64_t_vector) std::vector<uint64_t>;
116
117
// Predeclaration of namespaces and/or classes not exported to the target language,
118
// but that are part of the Fast DDS public API
0 commit comments