@@ -136,6 +136,7 @@ class DataReader : public DomainEntity
136136 *
137137 * @param[in] max_wait Max blocking time for this operation.
138138 * @return RETCODE_OK if there is new unread message, ReturnCode_t::RETCODE_TIMEOUT if timeout
139+ *
139140 * @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
140141 */
141142 RTPS_DllAPI ReturnCode_t wait_for_historical_data (
@@ -454,7 +455,7 @@ class DataReader : public DomainEntity
454455 * This operation accesses a collection of Data values from the DataReader. The behavior is identical to
455456 * @ref read_next_instance except that all samples returned satisfy the specified condition. In other words, on
456457 * success all returned samples belong to the same instance, and the instance is the instance with
457- * ‘ smallest’ @c instance_handle among the ones that verify (a) @c instance_handle >= @c previous_handle and (b) have samples
458+ * ' smallest' @c instance_handle among the ones that verify (a) @c instance_handle >= @c previous_handle and (b) have samples
458459 * for which the specified ReadCondition evaluates to TRUE.
459460 *
460461 * Similar to the operation @ref read_next_instance it is possible to call
@@ -463,19 +464,19 @@ class DataReader : public DomainEntity
463464 *
464465 * The behavior of the @ref read_next_instance_w_condition operation follows the same rules than the read operation
465466 * regarding the pre-conditions and post-conditions for the @c data_values and @c sample_infos collections. Similar
466- * to read, the @ref read_next_instance_w_condition operation may ‘ loan’ elements to the output collections which
467+ * to read, the @ref read_next_instance_w_condition operation may ' loan' elements to the output collections which
467468 * must then be returned by means of @ref return_loan.
468469 *
469470 * If the DataReader has no samples that meet the constraints, the return value will be RETCODE_NO_DATA.
470471 *
471- * @param[in,out] data_values A LoanableCollection object where the received data samples will be returned.
472- * @param[in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
473- * @param[in] max_samples The maximum number of samples to be returned. If the special value
474- * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
475- * available, up to the limits described in the documentation for @ref read().
476- * @param[in] previous_handle The 'next smallest' instance with a value greater than this value that has
477- * available samples will be returned.
478- * @param[in] a_condition A ReadCondition that returned @c data_values must pass
472+ * @param [in,out] data_values A LoanableCollection object where the received data samples will be returned.
473+ * @param [in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
474+ * @param [in] max_samples The maximum number of samples to be returned. If the special value
475+ * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
476+ * available, up to the limits described in the documentation for @ref read().
477+ * @param [in] previous_handle The 'next smallest' instance with a value greater than this value that has
478+ * available samples will be returned.
479+ * @param [in] a_condition A ReadCondition that returned @c data_values must pass
479480 *
480481 * @return Any of the standard return codes.
481482 */
@@ -561,11 +562,11 @@ class DataReader : public DomainEntity
561562 *
562563 * If the DataReader has no samples that meet the constraints, the return value will be RETCODE_NO_DATA.
563564 *
564- * @param[in,out] data_values A LoanableCollection object where the received data samples will be returned.
565- * @param[in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
566- * @param[in] max_samples The maximum number of samples to be returned. If the special value
567- * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are.
568- * @param[in] a_condition A ReadCondition that returned @c data_values must pass
565+ * @param [in,out] data_values A LoanableCollection object where the received data samples will be returned.
566+ * @param [in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
567+ * @param [in] max_samples The maximum number of samples to be returned. If the special value
568+ * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are.
569+ * @param [in] a_condition A ReadCondition that returned @c data_values must pass
569570 *
570571 * @return Any of the standard return codes.
571572 */
@@ -589,17 +590,17 @@ class DataReader : public DomainEntity
589590 *
590591 * If the DataReader has no samples that meet the constraints, the operations fails with RETCODE_NO_DATA.
591592 *
592- * @param[in,out] data_values A LoanableCollection object where the received data samples will be returned.
593- * @param[in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
594- * @param[in] max_samples The maximum number of samples to be returned. If the special value
595- * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
596- * available, up to the limits described in the documentation for @ref read().
597- * @param[in] a_handle The specified instance to return samples for. The method will fail with
598- * RETCODE_BAD_PARAMETER if the handle does not correspond to an existing
599- * data-object known to the DataReader.
600- * @param[in] sample_states Only data samples with @c sample_state matching one of these will be returned.
601- * @param[in] view_states Only data samples with @c view_state matching one of these will be returned.
602- * @param[in] instance_states Only data samples with @c instance_state matching one of these will be returned.
593+ * @param [in,out] data_values A LoanableCollection object where the received data samples will be returned.
594+ * @param [in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
595+ * @param [in] max_samples The maximum number of samples to be returned. If the special value
596+ * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
597+ * available, up to the limits described in the documentation for @ref read().
598+ * @param [in] a_handle The specified instance to return samples for. The method will fail with
599+ * RETCODE_BAD_PARAMETER if the handle does not correspond to an existing
600+ * data-object known to the DataReader.
601+ * @param [in] sample_states Only data samples with @c sample_state matching one of these will be returned.
602+ * @param [in] view_states Only data samples with @c view_state matching one of these will be returned.
603+ * @param [in] instance_states Only data samples with @c instance_state matching one of these will be returned.
603604 *
604605 * @return Any of the standard return codes.
605606 */
@@ -629,16 +630,16 @@ class DataReader : public DomainEntity
629630 *
630631 * If the DataReader has no samples that meet the constraints, the operations fails with RETCODE_NO_DATA.
631632 *
632- * @param[in,out] data_values A LoanableCollection object where the received data samples will be returned.
633- * @param[in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
634- * @param[in] max_samples The maximum number of samples to be returned. If the special value
635- * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
636- * available, up to the limits described in the documentation for @ref read().
637- * @param[in] previous_handle The 'next smallest' instance with a value greater than this value that has
638- * available samples will be returned.
639- * @param[in] sample_states Only data samples with @c sample_state matching one of these will be returned.
640- * @param[in] view_states Only data samples with @c view_state matching one of these will be returned.
641- * @param[in] instance_states Only data samples with @c instance_state matching one of these will be returned.
633+ * @param [in,out] data_values A LoanableCollection object where the received data samples will be returned.
634+ * @param [in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
635+ * @param [in] max_samples The maximum number of samples to be returned. If the special value
636+ * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
637+ * available, up to the limits described in the documentation for @ref read().
638+ * @param [in] previous_handle The 'next smallest' instance with a value greater than this value that has
639+ * available samples will be returned.
640+ * @param [in] sample_states Only data samples with @c sample_state matching one of these will be returned.
641+ * @param [in] view_states Only data samples with @c view_state matching one of these will be returned.
642+ * @param [in] instance_states Only data samples with @c instance_state matching one of these will be returned.
642643 *
643644 * @return Any of the standard return codes.
644645 */
@@ -668,14 +669,14 @@ class DataReader : public DomainEntity
668669 *
669670 * If the DataReader has no samples that meet the constraints, the return value will be RETCODE_NO_DATA
670671 *
671- * @param[in,out] data_values A LoanableCollection object where the received data samples will be returned.
672- * @param[in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
673- * @param[in] max_samples The maximum number of samples to be returned. If the special value
674- * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
675- * available, up to the limits described in the documentation for @ref read().
676- * @param[in] previous_handle The 'next smallest' instance with a value greater than this value that has
677- * available samples will be returned.
678- * @param[in] a_condition A ReadCondition that returned @c data_values must pass
672+ * @param [in,out] data_values A LoanableCollection object where the received data samples will be returned.
673+ * @param [in,out] sample_infos A SampleInfoSeq object where the received sample info will be returned.
674+ * @param [in] max_samples The maximum number of samples to be returned. If the special value
675+ * @ref LENGTH_UNLIMITED is provided, as many samples will be returned as are
676+ * available, up to the limits described in the documentation for @ref read().
677+ * @param [in] previous_handle The 'next smallest' instance with a value greater than this value that has
678+ * available samples will be returned.
679+ * @param [in] a_condition A ReadCondition that returned @c data_values must pass
679680 *
680681 * @return Any of the standard return codes.
681682 */
@@ -764,6 +765,7 @@ class DataReader : public DomainEntity
764765 * @param[in] handle
765766 *
766767 * @return Any of the standard return codes.
768+ *
767769 * @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
768770 */
769771 RTPS_DllAPI ReturnCode_t get_key_value (
@@ -976,6 +978,7 @@ class DataReader : public DomainEntity
976978 * @param[out] publication_data publication data struct
977979 * @param publication_handle InstanceHandle_t of the publication
978980 * @return RETCODE_OK
981+ *
979982 * @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
980983 */
981984 RTPS_DllAPI ReturnCode_t get_matched_publication_data (
@@ -987,6 +990,7 @@ class DataReader : public DomainEntity
987990 *
988991 * @param[out] publication_handles Vector where the InstanceHandle_t are returned
989992 * @return RETCODE_OK
993+ *
990994 * @warning Not supported yet. Currently returns RETCODE_UNSUPPORTED
991995 */
992996 RTPS_DllAPI ReturnCode_t get_matched_publications (
0 commit comments