summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/performance-tests/Keyed/Connector/Perf_Keyed_Test_Connector_exec.cpp
blob: 4b8f4f9ad288a96e9761161135ac556b29f79aeb (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 "Perf_Keyed_Test_Connector_exec.h"

namespace CIAO_Perf_Keyed_Test_Perf_Keyed_Test_Connector_Impl
{
  Perf_Keyed_Test_Connector_exec_i::Perf_Keyed_Test_Connector_exec_i (void)
    : DDS_Event_Connector_T<PerfKeyedTest_DDS_Traits, PerfKeyedTest_Connector_Traits> ()
  {
  }

  Perf_Keyed_Test_Connector_exec_i::~Perf_Keyed_Test_Connector_exec_i (void)
  {
  }

  extern "C" PERF_KEYED_TEST_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
  create_Perf_Keyed_Test_Perf_Keyed_Test_Connector_Impl (void)
  {
    ::Components::EnterpriseComponent_ptr retval =
      ::Components::EnterpriseComponent::_nil ();

    ACE_NEW_NORETURN (
      retval,
      Perf_Keyed_Test_Connector_exec_i ());

    return retval;
  }
}