summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/SharedDomainParticipant/DifferentDatatype/Connector3/Connector3_exec.cpp
blob: 6a9b80bd0870401b9501bfc0a6d4a465b1b7f73b (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 "Connector3_exec.h"

namespace CIAO_SharedDP_Connector3_Connector3_Impl
{
  Connector3_exec_i::Connector3_exec_i (void)
    : DDS_Event_Connector_T<SharedDPTest3_DDS_Traits, SharedDPTest3_Connector_Traits> ()
  {
  }

  Connector3_exec_i::~Connector3_exec_i (void)
  {
  }

  extern "C" SHAREDDP_CONNECTOR3_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_SharedDP_Connector3_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Connector3_exec_i ());

    return retval;
  }
}