summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/Getter/Connector/Getter_Test_Connector_exec.cpp
blob: acd0ff1313c9e1471f8575141df076f27ff31af3 (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
// -*- C++ -*-
// $Id$

#include "Getter_Test_Connector_exec.h"

namespace CIAO_Getter_Test_Getter_Test_Connector_Impl
{
  Getter_Test_Connector_exec_i::Getter_Test_Connector_exec_i (void)
    : DDS_Event_Connector_T<GetterTest_DDS_Traits, GetterTest_Connector_Traits> ()
  {
  }

  Getter_Test_Connector_exec_i::~Getter_Test_Connector_exec_i (void)
  {
  }

  extern "C" GETTER_TEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_Getter_Test_Getter_Test_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Getter_Test_Connector_exec_i ());

    return retval;
  }
}