summaryrefslogtreecommitdiff
path: root/ACE/TAO/CIAO/connectors/dds4ccm/tests/ListenOneByOne/Connector/LOBO_Test_Connector_exec.cpp
blob: 91f0a878c83a362af07e2ad09c44fe3a90e752e2 (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 "LOBO_Test_Connector_exec.h"

namespace CIAO_LOBO_Test_LOBO_Test_Connector_Impl
{
  LOBO_Test_Connector_exec_i::LOBO_Test_Connector_exec_i (void)
    : DDS_Event_Connector_T<ListenOneByOneTest_DDS_Traits, ListenOneByOneTest_Connector_Traits> ()
  {
  }

  LOBO_Test_Connector_exec_i::~LOBO_Test_Connector_exec_i (void)
  {
  }

  extern "C" LISTEN_ONE_BY_ONE_TEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_LOBO_Test_LOBO_Test_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      LOBO_Test_Connector_exec_i ());

    return retval;
  }
}