summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/examples/Hello/Connector/Hello_Connector_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/dds4ccm/examples/Hello/Connector/Hello_Connector_exec.cpp')
-rw-r--r--modules/CIAO/connectors/dds4ccm/examples/Hello/Connector/Hello_Connector_exec.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/CIAO/connectors/dds4ccm/examples/Hello/Connector/Hello_Connector_exec.cpp b/modules/CIAO/connectors/dds4ccm/examples/Hello/Connector/Hello_Connector_exec.cpp
new file mode 100644
index 00000000000..011406cc1a2
--- /dev/null
+++ b/modules/CIAO/connectors/dds4ccm/examples/Hello/Connector/Hello_Connector_exec.cpp
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+// $Id$
+
+#include "Hello_Connector_exec.h"
+
+namespace CIAO_Hello_Hello_Connector_Impl
+{
+ Hello_Connector_exec_i::Hello_Connector_exec_i (void)
+ : DDS_Event_Connector_T<DDSHello_DDS_Traits, DDSHello_Connector_Traits> ()
+ {
+ }
+
+ Hello_Connector_exec_i::~Hello_Connector_exec_i (void)
+ {
+ }
+
+ extern "C" HELLO_CONNECTOR_EXEC_Export ::Components::EnterpriseComponent_ptr
+ create_Hello_Hello_Connector_Impl (void)
+ {
+ ::Components::EnterpriseComponent_ptr retval =
+ ::Components::EnterpriseComponent::_nil ();
+
+ ACE_NEW_NORETURN (
+ retval,
+ Hello_Connector_exec_i ());
+
+ return retval;
+ }
+}
+