Skip to content

Commit 08ee62b

Browse files
authored
Changes in doxygen to fix warnings on documentation (#4700)
Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
1 parent f654ca9 commit 08ee62b

6 files changed

Lines changed: 24 additions & 2 deletions

File tree

include/fastdds/dds/core/policy/QosPolicies.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2797,8 +2797,10 @@ class TransportConfigQos : public QosPolicy
27972797
//! Thread settings for the builtin transports reception threads
27982798
rtps::ThreadSettings builtin_transports_reception_threads_;
27992799

2800-
/*! Maximum message size used to avoid fragmentation, set ONLY in LARGE_DATA. If this value is
2801-
* not zero, the network factory will allow the initialization of UDP transports with maxMessageSize
2800+
/*!
2801+
* @brief Maximum message size used to avoid fragmentation, set ONLY in LARGE_DATA.
2802+
*
2803+
* If this value is not zero, the network factory will allow the initialization of UDP transports with maxMessageSize
28022804
* higher than 65500K.
28032805
*/
28042806
uint32_t max_msg_size_no_frag;

include/fastdds/dds/domain/DomainParticipant.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,7 @@ class DomainParticipant : public Entity
684684
*
685685
* @param[out] participant_handles Reference to the vector where discovered participants will be returned
686686
* @return RETCODE_OK if everything correct, error code otherwise
687+
*
687688
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
688689
*/
689690
FASTDDS_EXPORTED_API ReturnCode_t get_discovered_participants(
@@ -695,6 +696,7 @@ class DomainParticipant : public Entity
695696
* @param[out] participant_data Reference to the ParticipantBuiltinTopicData object to return the data
696697
* @param participant_handle InstanceHandle of DomainParticipant to retrieve the data from
697698
* @return RETCODE_OK if everything correct, PRECONDITION_NOT_MET if participant does not exist
699+
*
698700
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
699701
*/
700702
FASTDDS_EXPORTED_API ReturnCode_t get_discovered_participant_data(
@@ -706,6 +708,7 @@ class DomainParticipant : public Entity
706708
*
707709
* @param[out] topic_handles Reference to the vector where discovered topics will be returned
708710
* @return RETCODE_OK if everything correct, error code otherwise
711+
*
709712
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
710713
*/
711714
FASTDDS_EXPORTED_API ReturnCode_t get_discovered_topics(

include/fastdds/dds/publisher/DataWriter.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ class DataWriter : public DomainEntity
483483
* @param[out] subscription_data subscription data struct
484484
* @param subscription_handle InstanceHandle_t of the subscription
485485
* @return RETCODE_OK
486+
*
486487
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
487488
*/
488489
FASTDDS_EXPORTED_API ReturnCode_t get_matched_subscription_data(
@@ -494,6 +495,7 @@ class DataWriter : public DomainEntity
494495
*
495496
* @param[out] subscription_handles Vector where the InstanceHandle_t are returned
496497
* @return RETCODE_OK
498+
*
497499
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
498500
*/
499501
FASTDDS_EXPORTED_API ReturnCode_t get_matched_subscriptions(

include/fastdds/dds/publisher/Publisher.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ class Publisher : public DomainEntity
215215
* @brief Indicates to FastDDS that the contained DataWriters are about to be modified
216216
*
217217
* @return RETCODE_OK if successful, an error code otherwise
218+
*
218219
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
219220
*/
220221
FASTDDS_EXPORTED_API ReturnCode_t suspend_publications();
@@ -223,6 +224,7 @@ class Publisher : public DomainEntity
223224
* @brief Indicates to FastDDS that the modifications to the DataWriters are complete.
224225
*
225226
* @return RETCODE_OK if successful, an error code otherwise
227+
*
226228
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
227229
*/
228230
FASTDDS_EXPORTED_API ReturnCode_t resume_publications();
@@ -231,6 +233,7 @@ class Publisher : public DomainEntity
231233
* @brief Signals the beginning of a set of coherent cache changes using the Datawriters attached to the publisher
232234
*
233235
* @return RETCODE_OK if successful, an error code otherwise
236+
*
234237
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
235238
*/
236239
FASTDDS_EXPORTED_API ReturnCode_t begin_coherent_changes();
@@ -239,6 +242,7 @@ class Publisher : public DomainEntity
239242
* @brief Signals the end of a set of coherent cache changes
240243
*
241244
* @return RETCODE_OK if successful, an error code otherwise
245+
*
242246
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
243247
*/
244248
FASTDDS_EXPORTED_API ReturnCode_t end_coherent_changes();
@@ -320,6 +324,8 @@ class Publisher : public DomainEntity
320324
* @param[out] writer_qos
321325
* @param[in] topic_qos
322326
* @return RETCODE_OK if successful, an error code otherwise
327+
*
328+
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
323329
*/
324330
FASTDDS_EXPORTED_API static ReturnCode_t copy_from_topic_qos(
325331
fastdds::dds::DataWriterQos& writer_qos,

include/fastdds/dds/subscriber/DataReader.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ class DataReader : public DomainEntity
133133
*
134134
* @param[in] max_wait Max blocking time for this operation.
135135
* @return RETCODE_OK if there is new unread message, RETCODE_TIMEOUT if timeout
136+
*
136137
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
137138
*/
138139
FASTDDS_EXPORTED_API ReturnCode_t wait_for_historical_data(
@@ -761,6 +762,7 @@ class DataReader : public DomainEntity
761762
* @param[in] handle
762763
*
763764
* @return Any of the standard return codes.
765+
*
764766
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
765767
*/
766768
FASTDDS_EXPORTED_API ReturnCode_t get_key_value(
@@ -973,6 +975,7 @@ class DataReader : public DomainEntity
973975
* @param[out] publication_data publication data struct
974976
* @param publication_handle InstanceHandle_t of the publication
975977
* @return RETCODE_OK
978+
*
976979
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
977980
*/
978981
FASTDDS_EXPORTED_API ReturnCode_t get_matched_publication_data(
@@ -984,6 +987,7 @@ class DataReader : public DomainEntity
984987
*
985988
* @param[out] publication_handles Vector where the InstanceHandle_t are returned
986989
* @return RETCODE_OK
990+
*
987991
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
988992
*/
989993
FASTDDS_EXPORTED_API ReturnCode_t get_matched_publications(

include/fastdds/dds/subscriber/Subscriber.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ class Subscriber : public DomainEntity
232232
* @param view_states Vector of ViewStateKind
233233
* @param instance_states Vector of InstanceStateKind
234234
* @return RETCODE_OK
235+
*
235236
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
236237
*/
237238
FASTDDS_EXPORTED_API ReturnCode_t get_datareaders(
@@ -252,6 +253,7 @@ class Subscriber : public DomainEntity
252253
* attached to the Subscriber.
253254
*
254255
* @return RETCODE_OK
256+
*
255257
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
256258
*/
257259
FASTDDS_EXPORTED_API ReturnCode_t begin_access();
@@ -261,6 +263,7 @@ class Subscriber : public DomainEntity
261263
* the Subscriber.
262264
*
263265
* @return RETCODE_OK
266+
*
264267
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
265268
*/
266269
FASTDDS_EXPORTED_API ReturnCode_t end_access();
@@ -358,6 +361,8 @@ class Subscriber : public DomainEntity
358361
* @param[in, out] reader_qos
359362
* @param[in] topic_qos
360363
* @return RETCODE_OK if successful, an error code otherwise
364+
*
365+
* @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
361366
*/
362367
FASTDDS_EXPORTED_API static ReturnCode_t copy_from_topic_qos(
363368
DataReaderQos& reader_qos,

0 commit comments

Comments
 (0)