@@ -548,37 +548,37 @@ class DomainParticipant : public Entity
548
548
PublisherQos& qos) const ;
549
549
550
550
/* *
551
- * Fills the PublisherQos with the first publisher profile found in the provided XML.
551
+ * Fills the @ref PublisherQos with the first publisher profile found in the provided XML.
552
552
*
553
553
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
554
- * @param qos PublisherQos object where the qos is returned.
555
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
554
+ * @param qos @ref PublisherQos object where the qos is returned.
555
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
556
556
*/
557
557
FASTDDS_EXPORTED_API ReturnCode_t get_publisher_qos_from_xml (
558
558
const std::string& xml,
559
559
PublisherQos& qos) const ;
560
560
561
561
/* *
562
- * Fills the PublisherQos with the publisher profile with \c profile_name to be found in the provided XML.
562
+ * Fills the @ref PublisherQos with the publisher profile with \c profile_name to be found in the provided XML.
563
563
*
564
564
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
565
- * @param qos PublisherQos object where the qos is returned.
565
+ * @param qos @ref PublisherQos object where the qos is returned.
566
566
* @param profile_name Publisher profile name.
567
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
567
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
568
568
*/
569
569
FASTDDS_EXPORTED_API ReturnCode_t get_publisher_qos_from_xml (
570
570
const std::string& xml,
571
571
PublisherQos& qos,
572
572
const std::string& profile_name) const ;
573
573
574
574
/* *
575
- * Fills the PublisherQos with the default publisher profile found in the provided XML (if there is).
575
+ * Fills the @ref PublisherQos with the default publisher profile found in the provided XML (if there is).
576
576
*
577
577
* @note This method does not update the default publisher qos (returned by \c get_default_publisher_qos).
578
578
*
579
579
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
580
- * @param qos PublisherQos object where the qos is returned.
581
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
580
+ * @param qos @ref PublisherQos object where the qos is returned.
581
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
582
582
*/
583
583
FASTDDS_EXPORTED_API ReturnCode_t get_default_publisher_qos_from_xml (
584
584
const std::string& xml,
@@ -639,37 +639,37 @@ class DomainParticipant : public Entity
639
639
SubscriberQos& qos) const ;
640
640
641
641
/* *
642
- * Fills the SubscriberQos with the first subscriber profile found in the provided XML.
642
+ * Fills the @ref SubscriberQos with the first subscriber profile found in the provided XML.
643
643
*
644
644
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
645
- * @param qos SubscriberQos object where the qos is returned.
646
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
645
+ * @param qos @ref SubscriberQos object where the qos is returned.
646
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
647
647
*/
648
648
FASTDDS_EXPORTED_API ReturnCode_t get_subscriber_qos_from_xml (
649
649
const std::string& xml,
650
650
SubscriberQos& qos) const ;
651
651
652
652
/* *
653
- * Fills the SubscriberQos with the subscriber profile with \c profile_name to be found in the provided XML.
653
+ * Fills the @ref SubscriberQos with the subscriber profile with \c profile_name to be found in the provided XML.
654
654
*
655
655
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
656
- * @param qos SubscriberQos object where the qos is returned.
656
+ * @param qos @ref SubscriberQos object where the qos is returned.
657
657
* @param profile_name Subscriber profile name.
658
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
658
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
659
659
*/
660
660
FASTDDS_EXPORTED_API ReturnCode_t get_subscriber_qos_from_xml (
661
661
const std::string& xml,
662
662
SubscriberQos& qos,
663
663
const std::string& profile_name) const ;
664
664
665
665
/* *
666
- * Fills the SubscriberQos with the default subscriber profile found in the provided XML (if there is).
666
+ * Fills the @ref SubscriberQos with the default subscriber profile found in the provided XML (if there is).
667
667
*
668
668
* @note This method does not update the default subscriber qos (returned by \c get_default_subscriber_qos).
669
669
*
670
670
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
671
- * @param qos SubscriberQos object where the qos is returned.
672
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
671
+ * @param qos @ref SubscriberQos object where the qos is returned.
672
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
673
673
*/
674
674
FASTDDS_EXPORTED_API ReturnCode_t get_default_subscriber_qos_from_xml (
675
675
const std::string& xml,
@@ -730,13 +730,13 @@ class DomainParticipant : public Entity
730
730
TopicQos& qos) const ;
731
731
732
732
/* *
733
- * Fills the TopicQos with the values of the XML profile, and also its corresponding topic and data type names (if specified).
733
+ * Fills the @ref TopicQos with the values of the XML profile, and also its corresponding topic and data type names (if specified).
734
734
*
735
735
* @param profile_name Topic profile name.
736
- * @param qos TopicQos object where the qos is returned.
736
+ * @param qos @ref TopicQos object where the qos is returned.
737
737
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
738
738
* @param topic_data_type String where the name of the topic data type associated to this profile is returned (if specified).
739
- * @return RETCODE_OK if the profile exists. RETCODE_BAD_PARAMETER otherwise.
739
+ * @return @ref RETCODE_OK if the profile exists. @ref RETCODE_BAD_PARAMETER otherwise.
740
740
*/
741
741
FASTDDS_EXPORTED_API ReturnCode_t get_topic_qos_from_profile (
742
742
const std::string& profile_name,
@@ -745,24 +745,24 @@ class DomainParticipant : public Entity
745
745
std::string& topic_data_type) const ;
746
746
747
747
/* *
748
- * Fills the TopicQos with the first topic profile found in the provided XML.
748
+ * Fills the @ref TopicQos with the first topic profile found in the provided XML.
749
749
*
750
750
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
751
- * @param qos TopicQos object where the qos is returned.
752
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
751
+ * @param qos @ref TopicQos object where the qos is returned.
752
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
753
753
*/
754
754
FASTDDS_EXPORTED_API ReturnCode_t get_topic_qos_from_xml (
755
755
const std::string& xml,
756
756
TopicQos& qos) const ;
757
757
758
758
/* *
759
- * Fills the TopicQos with the first topic profile found in the provided XML, and also its corresponding topic and data type names (if specified).
759
+ * Fills the @ref TopicQos with the first topic profile found in the provided XML, and also its corresponding topic and data type names (if specified).
760
760
*
761
761
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
762
- * @param qos TopicQos object where the qos is returned.
762
+ * @param qos @ref TopicQos object where the qos is returned.
763
763
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
764
764
* @param topic_data_type String where the name of the topic data type associated to this profile is returned (if specified).
765
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
765
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
766
766
*/
767
767
FASTDDS_EXPORTED_API ReturnCode_t get_topic_qos_from_xml (
768
768
const std::string& xml,
@@ -771,27 +771,27 @@ class DomainParticipant : public Entity
771
771
std::string& topic_data_type) const ;
772
772
773
773
/* *
774
- * Fills the TopicQos with the topic profile with \c profile_name to be found in the provided XML.
774
+ * Fills the @ref TopicQos with the topic profile with \c profile_name to be found in the provided XML.
775
775
*
776
776
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
777
- * @param qos TopicQos object where the qos is returned.
777
+ * @param qos @ref TopicQos object where the qos is returned.
778
778
* @param profile_name Topic profile name.
779
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
779
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
780
780
*/
781
781
FASTDDS_EXPORTED_API ReturnCode_t get_topic_qos_from_xml (
782
782
const std::string& xml,
783
783
TopicQos& qos,
784
784
const std::string& profile_name) const ;
785
785
786
786
/* *
787
- * Fills the TopicQos with the topic profile with \c profile_name to be found in the provided XML, and also its corresponding topic and data type names (if specified).
787
+ * Fills the @ref TopicQos with the topic profile with \c profile_name to be found in the provided XML, and also its corresponding topic and data type names (if specified).
788
788
*
789
789
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
790
- * @param qos TopicQos object where the qos is returned.
790
+ * @param qos @ref TopicQos object where the qos is returned.
791
791
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
792
792
* @param topic_data_type String where the name of the topic data type associated to this profile is returned (if specified).
793
793
* @param profile_name Topic profile name.
794
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
794
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
795
795
*/
796
796
FASTDDS_EXPORTED_API ReturnCode_t get_topic_qos_from_xml (
797
797
const std::string& xml,
@@ -814,15 +814,15 @@ class DomainParticipant : public Entity
814
814
TopicQos& qos) const ;
815
815
816
816
/* *
817
- * Fills the TopicQos with the default topic profile found in the provided XML (if there is), and also its corresponding topic and data type names (if specified).
817
+ * Fills the @ref TopicQos with the default topic profile found in the provided XML (if there is), and also its corresponding topic and data type names (if specified).
818
818
*
819
819
* @note This method does not update the default topic qos (returned by \c get_default_topic_qos).
820
820
*
821
821
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
822
- * @param qos TopicQos object where the qos is returned.
822
+ * @param qos @ref TopicQos object where the qos is returned.
823
823
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
824
824
* @param topic_data_type String where the name of the topic data type associated to this profile is returned (if specified).
825
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
825
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
826
826
*/
827
827
FASTDDS_EXPORTED_API ReturnCode_t get_default_topic_qos_from_xml (
828
828
const std::string& xml,
@@ -842,37 +842,37 @@ class DomainParticipant : public Entity
842
842
ReplierQos& qos) const ;
843
843
844
844
/* *
845
- * Fills the ReplierQos with the first replier profile found in the provided XML.
845
+ * Fills the @ref ReplierQos with the first replier profile found in the provided XML.
846
846
*
847
847
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
848
- * @param qos ReplierQos object where the qos is returned.
849
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
848
+ * @param qos @ref ReplierQos object where the qos is returned.
849
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
850
850
*/
851
851
FASTDDS_EXPORTED_API ReturnCode_t get_replier_qos_from_xml (
852
852
const std::string& xml,
853
853
ReplierQos& qos) const ;
854
854
855
855
/* *
856
- * Fills the ReplierQos with the replier profile with \c profile_name to be found in the provided XML.
856
+ * Fills the @ref ReplierQos with the replier profile with \c profile_name to be found in the provided XML.
857
857
*
858
858
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
859
- * @param qos ReplierQos object where the qos is returned.
859
+ * @param qos @ref ReplierQos object where the qos is returned.
860
860
* @param profile_name Replier profile name.
861
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
861
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
862
862
*/
863
863
FASTDDS_EXPORTED_API ReturnCode_t get_replier_qos_from_xml (
864
864
const std::string& xml,
865
865
ReplierQos& qos,
866
866
const std::string& profile_name) const ;
867
867
868
868
/* *
869
- * Fills the ReplierQos with the default replier profile found in the provided XML (if there is).
869
+ * Fills the @ref ReplierQos with the default replier profile found in the provided XML (if there is).
870
870
*
871
871
* @note This method does not update the default replier qos.
872
872
*
873
873
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
874
- * @param qos ReplierQos object where the qos is returned.
875
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
874
+ * @param qos @ref ReplierQos object where the qos is returned.
875
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
876
876
*/
877
877
FASTDDS_EXPORTED_API ReturnCode_t get_default_replier_qos_from_xml (
878
878
const std::string& xml,
@@ -890,37 +890,37 @@ class DomainParticipant : public Entity
890
890
RequesterQos& qos) const ;
891
891
892
892
/* *
893
- * Fills the RequesterQos with the first requester profile found in the provided XML.
893
+ * Fills the @ref RequesterQos with the first requester profile found in the provided XML.
894
894
*
895
895
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
896
- * @param qos RequesterQos object where the qos is returned.
897
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
896
+ * @param qos @ref RequesterQos object where the qos is returned.
897
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
898
898
*/
899
899
FASTDDS_EXPORTED_API ReturnCode_t get_requester_qos_from_xml (
900
900
const std::string& xml,
901
901
RequesterQos& qos) const ;
902
902
903
903
/* *
904
- * Fills the RequesterQos with the requester profile with \c profile_name to be found in the provided XML.
904
+ * Fills the @ref RequesterQos with the requester profile with \c profile_name to be found in the provided XML.
905
905
*
906
906
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
907
- * @param qos RequesterQos object where the qos is returned.
907
+ * @param qos @ref RequesterQos object where the qos is returned.
908
908
* @param profile_name Requester profile name.
909
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
909
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
910
910
*/
911
911
FASTDDS_EXPORTED_API ReturnCode_t get_requester_qos_from_xml (
912
912
const std::string& xml,
913
913
RequesterQos& qos,
914
914
const std::string& profile_name) const ;
915
915
916
916
/* *
917
- * Fills the RequesterQos with the default requester profile found in the provided XML (if there is).
917
+ * Fills the @ref RequesterQos with the default requester profile found in the provided XML (if there is).
918
918
*
919
919
* @note This method does not update the default requester qos.
920
920
*
921
921
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
922
- * @param qos RequesterQos object where the qos is returned.
923
- * @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
922
+ * @param qos @ref RequesterQos object where the qos is returned.
923
+ * @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
924
924
*/
925
925
FASTDDS_EXPORTED_API ReturnCode_t get_default_requester_qos_from_xml (
926
926
const std::string& xml,
0 commit comments