summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/SharedDomainParticipant/DifferentDatatype/Connector2/Connector2_exec.cpp
blob: 4a2a09d7ff725855178a7d5b978d92ffd9718369 (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 "Connector2_exec.h"

namespace CIAO_SharedDP_Connector2_Connector2_Impl
{
  Connector2_exec_i::Connector2_exec_i (void)
    : DDS_Event_Connector_T<SharedDPTest2_DDS_Traits, SharedDPTest2_Connector_Traits> ()
  {
  }

  Connector2_exec_i::~Connector2_exec_i (void)
  {
  }

  extern "C" SHAREDDP_CONNECTOR2_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_SharedDP_Connector2_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Connector2_exec_i ());

    return retval;
  }
}