summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/SLDisabled/Connector/SL_Disabled_Connector_exec.cpp
blob: af02d5b3b0f22e5854f313e2516e2c86b133730c (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 "SL_Disabled_Connector_exec.h"

namespace CIAO_SL_Disabled_SL_Disabled_Connector_Impl
{
  SL_Disabled_Connector_exec_i::SL_Disabled_Connector_exec_i (void)
    : DDS_State_Connector_T<TestTopic_DDS_Traits, TestTopic_Connector_Traits> ()
  {
  }

  SL_Disabled_Connector_exec_i::~SL_Disabled_Connector_exec_i (void)
  {
  }

  extern "C" SL_DISABLED_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_SL_Disabled_SL_Disabled_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      SL_Disabled_Connector_exec_i ());

    return retval;
  }
}