summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/impl/Utils.cpp
blob: b8011148d18d9edbab6e63703dcaf9bc06e27471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include "Utils.h"

namespace CIAO
{
  namespace DDS4CCM
  {
    QOS_XML_Noop::QOS_XML_Noop (void)
    {
    }

    QOS_XML_Noop::~QOS_XML_Noop (void)
    {
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::init (
      const ACE_TCHAR * /*qos_profile*/)
    {
      return ::DDS::RETCODE_OK;
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::get_datawriter_qos (
      DDS::DataWriterQos& /*dw_qos*/,
      const char * /*qos_profile*/,
      const char* /*topic_name*/)
    {
      return ::DDS::RETCODE_OK;
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::get_datareader_qos (
      DDS::DataReaderQos& /*dr_qos*/,
      const char * /*qos_profile*/,
      const char* /*topic_name*/)
    {
      return ::DDS::RETCODE_OK;
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::get_publisher_qos (
      DDS::PublisherQos& /*pub_qos*/,
      const char * /*qos_profile*/)
    {
      return ::DDS::RETCODE_OK;
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::get_subscriber_qos (
      DDS::SubscriberQos& /*sub_qos*/,
      const char * /*qos_profile*/)
    {
      return ::DDS::RETCODE_OK;
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::get_topic_qos (
      DDS::TopicQos& /*topic_qos*/,
      const char * /*qos_profile*/,
      const ACE_TCHAR * /*topic_name*/)
    {
      return ::DDS::RETCODE_OK;
    }

    DDS::ReturnCode_t
    QOS_XML_Noop::get_participant_qos (
      DDS::DomainParticipantQos& /*part_qos*/,
      const char * /*qos_profile*/)
    {
      return ::DDS::RETCODE_OK;
    }
  }
}