@@ -455,7 +455,7 @@ class DataReader : public DomainEntity
455
455
* This operation accesses a collection of Data values from the DataReader. The behavior is identical to
456
456
* @ref read_next_instance except that all samples returned satisfy the specified condition. In other words, on
457
457
* success all returned samples belong to the same instance, and the instance is the instance with
458
- * ‘ 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
459
459
* for which the specified ReadCondition evaluates to TRUE.
460
460
*
461
461
* Similar to the operation @ref read_next_instance it is possible to call
@@ -464,19 +464,19 @@ class DataReader : public DomainEntity
464
464
*
465
465
* The behavior of the @ref read_next_instance_w_condition operation follows the same rules than the read operation
466
466
* regarding the pre-conditions and post-conditions for the @c data_values and @c sample_infos collections. Similar
467
- * 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
468
468
* must then be returned by means of @ref return_loan.
469
469
*
470
470
* If the DataReader has no samples that meet the constraints, the return value will be RETCODE_NO_DATA.
471
471
*
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
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
480
480
*
481
481
* @return Any of the standard return codes.
482
482
*/
@@ -562,11 +562,11 @@ class DataReader : public DomainEntity
562
562
*
563
563
* If the DataReader has no samples that meet the constraints, the return value will be RETCODE_NO_DATA.
564
564
*
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
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
570
570
*
571
571
* @return Any of the standard return codes.
572
572
*/
@@ -590,17 +590,17 @@ class DataReader : public DomainEntity
590
590
*
591
591
* If the DataReader has no samples that meet the constraints, the operations fails with RETCODE_NO_DATA.
592
592
*
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.
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.
604
604
*
605
605
* @return Any of the standard return codes.
606
606
*/
@@ -630,16 +630,16 @@ class DataReader : public DomainEntity
630
630
*
631
631
* If the DataReader has no samples that meet the constraints, the operations fails with RETCODE_NO_DATA.
632
632
*
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.
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.
643
643
*
644
644
* @return Any of the standard return codes.
645
645
*/
@@ -669,14 +669,14 @@ class DataReader : public DomainEntity
669
669
*
670
670
* If the DataReader has no samples that meet the constraints, the return value will be RETCODE_NO_DATA
671
671
*
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
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
680
680
*
681
681
* @return Any of the standard return codes.
682
682
*/
0 commit comments