@@ -479,6 +479,14 @@ class DomainParticipantImpl
479
479
return RETCODE_OK;
480
480
}
481
481
482
+ ReturnCode_t get_publisher_qos_from_xml (
483
+ const std::string& /* xml*/ ,
484
+ PublisherQos& /* qos*/ ,
485
+ const std::string& /* profile_name*/ ) const
486
+ {
487
+ return RETCODE_OK;
488
+ }
489
+
482
490
ReturnCode_t set_default_subscriber_qos (
483
491
const SubscriberQos& /* qos*/ )
484
492
{
@@ -497,6 +505,14 @@ class DomainParticipantImpl
497
505
return RETCODE_OK;
498
506
}
499
507
508
+ ReturnCode_t get_subscriber_qos_from_xml (
509
+ const std::string& /* xml*/ ,
510
+ SubscriberQos& /* qos*/ ,
511
+ const std::string& /* profile_name*/ ) const
512
+ {
513
+ return RETCODE_OK;
514
+ }
515
+
500
516
ReturnCode_t set_default_topic_qos (
501
517
const TopicQos& /* qos*/ )
502
518
{
@@ -515,20 +531,63 @@ class DomainParticipantImpl
515
531
return RETCODE_OK;
516
532
}
517
533
534
+ ReturnCode_t get_topic_qos_from_profile (
535
+ const std::string& /* profile_name*/ ,
536
+ TopicQos& /* qos*/ ,
537
+ std::string& /* topic_name*/ ,
538
+ std::string& /* topic_data_type*/ ) const
539
+ {
540
+ return RETCODE_OK;
541
+ }
542
+
543
+ ReturnCode_t get_topic_qos_from_xml (
544
+ const std::string& /* xml*/ ,
545
+ TopicQos& /* qos*/ ,
546
+ const std::string& /* profile_name*/ ) const
547
+ {
548
+ return RETCODE_OK;
549
+ }
550
+
551
+ ReturnCode_t get_topic_qos_from_xml (
552
+ const std::string& /* xml*/ ,
553
+ TopicQos& /* qos*/ ,
554
+ std::string& /* topic_name*/ ,
555
+ std::string& /* topic_data_type*/ ,
556
+ const std::string& /* profile_name*/ ) const
557
+ {
558
+ return RETCODE_OK;
559
+ }
560
+
518
561
ReturnCode_t get_replier_qos_from_profile (
519
562
const std::string& /* profile_name*/ ,
520
563
ReplierQos& /* qos*/ ) const
521
564
{
522
565
return RETCODE_OK;
523
566
}
524
567
568
+ ReturnCode_t get_replier_qos_from_xml (
569
+ const std::string& /* xml*/ ,
570
+ ReplierQos& /* qos*/ ,
571
+ const std::string& /* profile_name*/ ) const
572
+ {
573
+ return RETCODE_OK;
574
+ }
575
+
525
576
ReturnCode_t get_requester_qos_from_profile (
526
577
const std::string& /* profile_name*/ ,
527
578
RequesterQos& /* qos*/ ) const
528
579
{
529
580
return RETCODE_OK;
530
581
}
531
582
583
+ ReturnCode_t get_requester_qos_from_xml (
584
+ const std::string& /* xml*/ ,
585
+ RequesterQos& /* qos*/ ,
586
+ const std::string& /* profile_name*/ ) const
587
+ {
588
+ return RETCODE_OK;
589
+ }
590
+
532
591
bool contains_entity (
533
592
const InstanceHandle_t& /* handle*/ ,
534
593
bool /* recursive*/ ) const
0 commit comments