We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9baed5 commit 699810bCopy full SHA for 699810b
test/xcdr/basic_types.cpp
@@ -112,6 +112,16 @@ void serialize(
112
cdr.end_serialize_type(current_status);
113
}
114
115
+template<>
116
+void serialize_array(
117
+ Cdr& cdr,
118
+ InnerBasicTypesShortStruct const* array_ptr,
119
+ unsigned long array_size)
120
+
121
+{
122
+ cdr.serialize_array(array_ptr, array_size);
123
+}
124
125
template<>
126
void deserialize(
127
Cdr& cdr,
@@ -157,6 +167,16 @@ void deserialize(
157
167
});
158
168
159
169
170
171
+void deserialize_array(
172
173
+ InnerBasicTypesShortStruct* array_ptr,
174
175
176
177
+ cdr.deserialize_array(array_ptr, array_size);
178
179
160
180
} // namespace fastcdr
161
181
} // namespace eprosima
162
182
0 commit comments