@@ -305,22 +305,22 @@ class ReaderProxyData
305305 }
306306
307307 FASTDDS_EXPORTED_API void type_id (
308- const TypeIdV1& other_type_id)
308+ const dds:: TypeIdV1& other_type_id)
309309 {
310310 type_id () = other_type_id;
311311 }
312312
313- FASTDDS_EXPORTED_API const TypeIdV1& type_id () const
313+ FASTDDS_EXPORTED_API const dds:: TypeIdV1& type_id () const
314314 {
315315 assert (m_type_id != nullptr );
316316 return *m_type_id;
317317 }
318318
319- FASTDDS_EXPORTED_API TypeIdV1& type_id ()
319+ FASTDDS_EXPORTED_API dds:: TypeIdV1& type_id ()
320320 {
321321 if (m_type_id == nullptr )
322322 {
323- m_type_id = new TypeIdV1 ();
323+ m_type_id = new dds:: TypeIdV1 ();
324324 }
325325 return *m_type_id;
326326 }
@@ -331,22 +331,22 @@ class ReaderProxyData
331331 }
332332
333333 FASTDDS_EXPORTED_API void type (
334- const TypeObjectV1& other_type)
334+ const dds:: TypeObjectV1& other_type)
335335 {
336336 type () = other_type;
337337 }
338338
339- FASTDDS_EXPORTED_API const TypeObjectV1& type () const
339+ FASTDDS_EXPORTED_API const dds:: TypeObjectV1& type () const
340340 {
341341 assert (m_type != nullptr );
342342 return *m_type;
343343 }
344344
345- FASTDDS_EXPORTED_API TypeObjectV1& type ()
345+ FASTDDS_EXPORTED_API dds:: TypeObjectV1& type ()
346346 {
347347 if (m_type == nullptr )
348348 {
349- m_type = new TypeObjectV1 ();
349+ m_type = new dds:: TypeObjectV1 ();
350350 }
351351 return *m_type;
352352 }
@@ -357,22 +357,22 @@ class ReaderProxyData
357357 }
358358
359359 FASTDDS_EXPORTED_API void type_information (
360- const xtypes::TypeInformationParameter& other_type_information)
360+ const dds:: xtypes::TypeInformationParameter& other_type_information)
361361 {
362362 type_information () = other_type_information;
363363 }
364364
365- FASTDDS_EXPORTED_API const xtypes::TypeInformationParameter& type_information () const
365+ FASTDDS_EXPORTED_API const dds:: xtypes::TypeInformationParameter& type_information () const
366366 {
367367 assert (m_type_information != nullptr );
368368 return *m_type_information;
369369 }
370370
371- FASTDDS_EXPORTED_API xtypes::TypeInformationParameter& type_information ()
371+ FASTDDS_EXPORTED_API dds:: xtypes::TypeInformationParameter& type_information ()
372372 {
373373 if (m_type_information == nullptr )
374374 {
375- m_type_information = new xtypes::TypeInformationParameter ();
375+ m_type_information = new dds:: xtypes::TypeInformationParameter ();
376376 }
377377 return *m_type_information;
378378 }
@@ -502,11 +502,11 @@ class ReaderProxyData
502502 // !Topic kind
503503 TopicKind_t m_topicKind;
504504 // !Type Identifier
505- TypeIdV1* m_type_id;
505+ dds:: TypeIdV1* m_type_id;
506506 // !Type Object
507- TypeObjectV1* m_type;
507+ dds:: TypeObjectV1* m_type;
508508 // !Type Information
509- xtypes::TypeInformationParameter* m_type_information;
509+ dds:: xtypes::TypeInformationParameter* m_type_information;
510510 // !
511511 ParameterPropertyList_t m_properties;
512512 // !Information on the content filter applied by the reader.
0 commit comments