summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/tests/CSLQoS/Connector/CSL_QoSTest_Connector_exec.cpp
blob: 0a8052b7019e3c54b064df2a0d5fe1e4989ec2f8 (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
// -*- C++ -*-
// $Id$

#include "CSL_QoSTest_Connector_exec.h"

namespace CIAO_CSL_QoSTest_CSL_QoSTest_Connector_Impl
{
  CSL_QoSTest_Connector_exec_i::CSL_QoSTest_Connector_exec_i (void)
    : DDS_Event_Connector_T<TestTopic_DDS_Traits, TestTopic_Connector_Traits> ()
  {
  }

  CSL_QoSTest_Connector_exec_i::~CSL_QoSTest_Connector_exec_i (void)
  {
  }

  extern "C" CSL_QOSTEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_CSL_QoSTest_CSL_QoSTest_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();
    ACE_NEW_NORETURN (
      retval,
      CSL_QoSTest_Connector_exec_i ());
    return retval;
  }
}