summaryrefslogtreecommitdiff
path: root/ACE/TAO/CIAO/connectors/dds4ccm/tests/CSLUnexpStat/Connector/CSL_USTest_Connector_exec.cpp
blob: d6dc5a06317a8786e48333f5dfcfdc3c15ead20f (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
// -*- C++ -*-
// $Id$

#include "CSL_USTest_Connector_exec.h"

namespace CIAO_CSL_USTest_CSL_USTest_Connector_Impl
{
  CSL_USTest_Connector_exec_i::CSL_USTest_Connector_exec_i (void)
    : DDS_Event_Connector_T<TestTopic_DDS_Traits, TestTopic_Connector_Traits> ()
  {
  }

  CSL_USTest_Connector_exec_i::~CSL_USTest_Connector_exec_i (void)
  {
  }

  extern "C" CSL_USTEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_CSL_USTest_CSL_USTest_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      CSL_USTest_Connector_exec_i ()); 
    return retval;
  }
}