summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/tests/ListenManyByMany/Connector/LMBM_Test_Connector_exec.cpp
blob: 4c20f9e9239fae2c41e748946d6f08e8eb9b92e9 (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 "LMBM_Test_Connector_exec.h"

namespace CIAO_LMBM_Test_LMBM_Test_Connector_Impl
{
  LMBM_Test_Connector_exec_i::LMBM_Test_Connector_exec_i (void)
    : DDS_Event_Connector_T<ListenManyByManyTest_DDS_Traits, ListenManyByManyTest_Connector_Traits> ()
  {
  }

  LMBM_Test_Connector_exec_i::~LMBM_Test_Connector_exec_i (void)
  {
  }

  extern "C" LISTEN_MANY_BY_MANY_TEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_LMBM_Test_LMBM_Test_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      LMBM_Test_Connector_exec_i ());

    return retval;
  }
}