Skip to content

Commit f6fe520

Browse files
Refs #21745. Apply suggestions
Signed-off-by: Juan Lopez Fernandez <[email protected]>
1 parent 6574456 commit f6fe520

File tree

6 files changed

+141
-141
lines changed

6 files changed

+141
-141
lines changed

include/fastdds/dds/domain/DomainParticipant.hpp

+66-66
Large diffs are not rendered by default.

include/fastdds/dds/domain/DomainParticipantFactory.hpp

+23-23
Original file line numberDiff line numberDiff line change
@@ -219,55 +219,55 @@ class DomainParticipantFactory
219219
const DomainParticipantQos& qos);
220220

221221
/**
222-
* Fills the DomainParticipantQos with the values of the XML profile.
222+
* Fills the @ref DomainParticipantQos with the values of the XML profile.
223223
*
224224
* @param profile_name DomainParticipant profile name.
225-
* @param qos DomainParticipantQos object where the qos is returned.
225+
* @param qos @ref DomainParticipantQos object where the qos is returned.
226226
* @return RETCODE_OK if the profile exists. RETCODE_BAD_PARAMETER otherwise.
227227
*/
228228
FASTDDS_EXPORTED_API ReturnCode_t get_participant_qos_from_profile(
229229
const std::string& profile_name,
230230
DomainParticipantQos& qos) const;
231231

232232
/**
233-
* Fills the DomainParticipantQos with the first DomainParticipant profile found in the provided XML.
233+
* Fills the @ref DomainParticipantQos with the first DomainParticipant profile found in the provided XML.
234234
*
235235
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
236-
* @param qos DomainParticipantQos object where the qos is returned.
237-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
236+
* @param qos @ref DomainParticipantQos object where the qos is returned.
237+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
238238
*/
239239
FASTDDS_EXPORTED_API ReturnCode_t get_participant_qos_from_xml(
240240
const std::string& xml,
241241
DomainParticipantQos& qos) const;
242242

243243
/**
244-
* Fills the DomainParticipantQos with the DomainParticipant profile with \c profile_name to be found in the provided XML.
244+
* Fills the @ref DomainParticipantQos with the DomainParticipant profile with \c profile_name to be found in the provided XML.
245245
*
246246
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
247-
* @param qos DomainParticipantQos object where the qos is returned.
247+
* @param qos @ref DomainParticipantQos object where the qos is returned.
248248
* @param profile_name DomainParticipant profile name.
249-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
249+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
250250
*/
251251
FASTDDS_EXPORTED_API ReturnCode_t get_participant_qos_from_xml(
252252
const std::string& xml,
253253
DomainParticipantQos& qos,
254254
const std::string& profile_name) const;
255255

256256
/**
257-
* Fills the DomainParticipantQos with the default DomainParticipant profile found in the provided XML (if there is).
257+
* Fills the @ref DomainParticipantQos with the default DomainParticipant profile found in the provided XML (if there is).
258258
*
259259
* @note This method does not update the default participant qos (returned by \c get_default_participant_qos).
260260
*
261261
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
262-
* @param qos DomainParticipantQos object where the qos is returned.
263-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
262+
* @param qos @ref DomainParticipantQos object where the qos is returned.
263+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
264264
*/
265265
FASTDDS_EXPORTED_API ReturnCode_t get_default_participant_qos_from_xml(
266266
const std::string& xml,
267267
DomainParticipantQos& qos) const;
268268

269269
/**
270-
* Fills the DomainParticipantExtendedQos with the values of the XML profile.
270+
* Fills the @ref DomainParticipantExtendedQos with the values of the XML profile.
271271
*
272272
* @param profile_name DomainParticipant profile name.
273273
* @param extended_qos DomainParticipantExtendedQos object where the domain and qos are returned.
@@ -278,46 +278,46 @@ class DomainParticipantFactory
278278
DomainParticipantExtendedQos& extended_qos) const;
279279

280280
/**
281-
* Fills the DomainParticipantExtendedQos with the first DomainParticipant profile found in the provided XML.
281+
* Fills the @ref DomainParticipantExtendedQos with the first DomainParticipant profile found in the provided XML.
282282
*
283283
* @param xml Raw XML string containing the profile to be used to fill the \c extended_qos structure.
284-
* @param extended_qos DomainParticipantExtendedQos object where the qos is returned.
285-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
284+
* @param extended_qos @ref DomainParticipantExtendedQos object where the qos is returned.
285+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
286286
*/
287287
FASTDDS_EXPORTED_API ReturnCode_t get_participant_extended_qos_from_xml(
288288
const std::string& xml,
289289
DomainParticipantExtendedQos& extended_qos) const;
290290

291291
/**
292-
* Fills the DomainParticipantExtendedQos with the DomainParticipant profile with \c profile_name to be found in the provided XML.
292+
* Fills the @ref DomainParticipantExtendedQos with the DomainParticipant profile with \c profile_name to be found in the provided XML.
293293
*
294294
* @param xml Raw XML string containing the profile to be used to fill the \c extended_qos structure.
295-
* @param extended_qos DomainParticipantExtendedQos object where the qos is returned.
295+
* @param extended_qos @ref DomainParticipantExtendedQos object where the qos is returned.
296296
* @param profile_name DomainParticipant profile name.
297-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
297+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
298298
*/
299299
FASTDDS_EXPORTED_API ReturnCode_t get_participant_extended_qos_from_xml(
300300
const std::string& xml,
301301
DomainParticipantExtendedQos& extended_qos,
302302
const std::string& profile_name) const;
303303

304304
/**
305-
* Fills the DomainParticipantExtendedQos with the default DomainParticipant profile found in the provided XML (if there is).
305+
* Fills the @ref DomainParticipantExtendedQos with the default DomainParticipant profile found in the provided XML (if there is).
306306
*
307307
* @note This method does not update the default participant extended qos.
308308
*
309309
* @param xml Raw XML string containing the profile to be used to fill the \c extended_qos structure.
310-
* @param qos DomainParticipantExtendedQos object where the qos is returned.
311-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
310+
* @param extended_qos @ref DomainParticipantExtendedQos object where the qos is returned.
311+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
312312
*/
313313
FASTDDS_EXPORTED_API ReturnCode_t get_default_participant_extended_qos_from_xml(
314314
const std::string& xml,
315315
DomainParticipantExtendedQos& extended_qos) const;
316316

317317
/**
318-
* Fills the DomainParticipantExtendedQos with the values of the default XML profile.
318+
* Fills the @ref DomainParticipantExtendedQos with the values of the default XML profile.
319319
*
320-
* @param extended_qos DomainParticipantExtendedQos object where the domain and qos are returned.
320+
* @param extended_qos @ref DomainParticipantExtendedQos object where the domain and qos are returned.
321321
* @return RETCODE_OK
322322
*/
323323
FASTDDS_EXPORTED_API ReturnCode_t get_participant_extended_qos_from_default_profile(

include/fastdds/dds/publisher/Publisher.hpp

+22-22
Original file line numberDiff line numberDiff line change
@@ -332,21 +332,21 @@ class Publisher : public DomainEntity
332332
const fastdds::dds::TopicQos& topic_qos);
333333

334334
/**
335-
* Fills the DataWriterQos with the values of the XML profile.
335+
* Fills the @ref DataWriterQos with the values of the XML profile.
336336
*
337337
* @param profile_name DataWriter profile name.
338-
* @param qos DataWriterQos object where the qos is returned.
338+
* @param qos @ref DataWriterQos object where the qos is returned.
339339
* @return RETCODE_OK if the profile exists. RETCODE_BAD_PARAMETER otherwise.
340340
*/
341341
FASTDDS_EXPORTED_API ReturnCode_t get_datawriter_qos_from_profile(
342342
const std::string& profile_name,
343343
DataWriterQos& qos) const;
344344

345345
/**
346-
* Fills the DataWriterQos with the values of the XML profile, and also its corresponding topic name (if specified).
346+
* Fills the @ref DataWriterQos with the values of the XML profile, and also its corresponding topic name (if specified).
347347
*
348348
* @param profile_name DataWriter profile name.
349-
* @param qos DataWriterQos object where the qos is returned.
349+
* @param qos @ref DataWriterQos object where the qos is returned.
350350
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
351351
* @return RETCODE_OK if the profile exists. RETCODE_BAD_PARAMETER otherwise.
352352
*/
@@ -356,50 +356,50 @@ class Publisher : public DomainEntity
356356
std::string& topic_name) const;
357357

358358
/**
359-
* Fills the DataWriterQos with the first DataWriter profile found in the provided XML.
359+
* Fills the @ref DataWriterQos with the first DataWriter profile found in the provided XML.
360360
*
361361
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
362-
* @param qos DataWriterQos object where the qos is returned.
363-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
362+
* @param qos @ref DataWriterQos object where the qos is returned.
363+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
364364
*/
365365
FASTDDS_EXPORTED_API ReturnCode_t get_datawriter_qos_from_xml(
366366
const std::string& xml,
367367
DataWriterQos& qos) const;
368368

369369
/**
370-
* Fills the DataWriterQos with the first DataWriter profile found in the provided XML, and also its corresponding topic name (if specified).
370+
* Fills the @ref DataWriterQos with the first DataWriter profile found in the provided XML, and also its corresponding topic name (if specified).
371371
*
372372
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
373-
* @param qos DataWriterQos object where the qos is returned.
373+
* @param qos @ref DataWriterQos object where the qos is returned.
374374
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
375-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
375+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
376376
*/
377377
FASTDDS_EXPORTED_API ReturnCode_t get_datawriter_qos_from_xml(
378378
const std::string& xml,
379379
DataWriterQos& qos,
380380
std::string& topic_name) const;
381381

382382
/**
383-
* Fills the DataWriterQos with the DataWriter profile with \c profile_name to be found in the provided XML.
383+
* Fills the @ref DataWriterQos with the DataWriter profile with \c profile_name to be found in the provided XML.
384384
*
385385
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
386-
* @param qos DataWriterQos object where the qos is returned.
386+
* @param qos @ref DataWriterQos object where the qos is returned.
387387
* @param profile_name DataWriter profile name.
388-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
388+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
389389
*/
390390
FASTDDS_EXPORTED_API ReturnCode_t get_datawriter_qos_from_xml(
391391
const std::string& xml,
392392
DataWriterQos& qos,
393393
const std::string& profile_name) const;
394394

395395
/**
396-
* Fills the DataWriterQos with the DataWriter profile with \c profile_name to be found in the provided XML, and also its corresponding topic name (if specified).
396+
* Fills the @ref DataWriterQos with the DataWriter profile with \c profile_name to be found in the provided XML, and also its corresponding topic name (if specified).
397397
*
398398
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
399-
* @param qos DataWriterQos object where the qos is returned.
399+
* @param qos @ref DataWriterQos object where the qos is returned.
400400
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
401401
* @param profile_name DataWriter profile name.
402-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
402+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
403403
*/
404404
FASTDDS_EXPORTED_API ReturnCode_t get_datawriter_qos_from_xml(
405405
const std::string& xml,
@@ -408,27 +408,27 @@ class Publisher : public DomainEntity
408408
const std::string& profile_name) const;
409409

410410
/**
411-
* Fills the DataWriterQos with the default DataWriter profile found in the provided XML (if there is).
411+
* Fills the @ref DataWriterQos with the default DataWriter profile found in the provided XML (if there is).
412412
*
413413
* @note This method does not update the default datawriter qos (returned by \c get_default_datawriter_qos).
414414
*
415415
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
416-
* @param qos DataWriterQos object where the qos is returned.
417-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
416+
* @param qos @ref DataWriterQos object where the qos is returned.
417+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
418418
*/
419419
FASTDDS_EXPORTED_API ReturnCode_t get_default_datawriter_qos_from_xml(
420420
const std::string& xml,
421421
DataWriterQos& qos) const;
422422

423423
/**
424-
* Fills the DataWriterQos with the default DataWriter profile found in the provided XML (if there is), and also its corresponding topic name (if specified).
424+
* Fills the @ref DataWriterQos with the default DataWriter profile found in the provided XML (if there is), and also its corresponding topic name (if specified).
425425
*
426426
* @note This method does not update the default datawriter qos (returned by \c get_default_datawriter_qos).
427427
*
428428
* @param xml Raw XML string containing the profile to be used to fill the \c qos structure.
429-
* @param qos DataWriterQos object where the qos is returned.
429+
* @param qos @ref DataWriterQos object where the qos is returned.
430430
* @param topic_name String where the name of the topic associated to this profile is returned (if specified).
431-
* @return RETCODE_OK on success. RETCODE_BAD_PARAMETER otherwise.
431+
* @return @ref RETCODE_OK on success. @ref RETCODE_BAD_PARAMETER otherwise.
432432
*/
433433
FASTDDS_EXPORTED_API ReturnCode_t get_default_datawriter_qos_from_xml(
434434
const std::string& xml,

0 commit comments

Comments
 (0)