summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/UnkeyedSamples/Connector/Unkeyed_Test_Connector_exec.cpp
blob: 76143802475891f9a6ebb17ad7f465672df3010d (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 "Unkeyed_Test_Connector_exec.h"

namespace CIAO_Unkeyed_Test_Unkeyed_Test_Connector_Impl
{
  Unkeyed_Test_Connector_exec_i::Unkeyed_Test_Connector_exec_i (void)
    : DDS_Event_Connector_T<UnkeyedTest_DDS_Traits, UnkeyedTest_Connector_Traits> ()
  {
  }

  Unkeyed_Test_Connector_exec_i::~Unkeyed_Test_Connector_exec_i (void)
  {
  }

  extern "C" UNKEYED_TEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_Unkeyed_Test_Unkeyed_Test_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Unkeyed_Test_Connector_exec_i ());

    return retval;
  }
}