summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/tests/Event_Connection_Test/Connector/Event_Connection_Test_Connector_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/dds4ccm/tests/Event_Connection_Test/Connector/Event_Connection_Test_Connector_exec.cpp')
-rw-r--r--modules/CIAO/connectors/dds4ccm/tests/Event_Connection_Test/Connector/Event_Connection_Test_Connector_exec.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/CIAO/connectors/dds4ccm/tests/Event_Connection_Test/Connector/Event_Connection_Test_Connector_exec.cpp b/modules/CIAO/connectors/dds4ccm/tests/Event_Connection_Test/Connector/Event_Connection_Test_Connector_exec.cpp
new file mode 100644
index 00000000000..0e17da08cd4
--- /dev/null
+++ b/modules/CIAO/connectors/dds4ccm/tests/Event_Connection_Test/Connector/Event_Connection_Test_Connector_exec.cpp
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+// $Id$
+
+#include "Event_Connection_Test_Connector_exec.h"
+
+namespace CIAO_Event_Connection_Test_Event_Connection_Test_Connector_Impl
+{
+ Event_Connection_Test_Connector_exec_i::Event_Connection_Test_Connector_exec_i ()
+ : DDS_Event_Connector_T<Event_ConnectionTest_DDS_Traits, Event_ConnectionTest_Connector_Traits> ()
+ {
+ }
+
+ Event_Connection_Test_Connector_exec_i::~Event_Connection_Test_Connector_exec_i (void)
+ {
+ }
+
+ extern "C" EVENT_CONNECTION_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
+ create_Event_Connection_Test_Event_Connection_Test_Connector_Impl (void)
+ {
+ ::Components::EnterpriseComponent_ptr retval =
+ ::Components::EnterpriseComponent::_nil ();
+
+ ACE_NEW_NORETURN (
+ retval,
+ Event_Connection_Test_Connector_exec_i ());
+
+ return retval;
+ }
+}
+