summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Gateway.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Gateway.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Gateway.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Gateway.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Gateway.cpp
new file mode 100644
index 00000000000..8addbb46165
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Gateway.cpp
@@ -0,0 +1,32 @@
+// $Id$
+
+#include "orbsvcs/Event/EC_Gateway.h"
+
+ACE_RCSID (Event,
+ EC_Gateway,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+TAO_EC_Gateway::TAO_EC_Gateway (void)
+ : handle_ (0)
+{
+}
+
+TAO_EC_Gateway::~TAO_EC_Gateway (void)
+{
+}
+
+void
+TAO_EC_Gateway::observer_handle (RtecEventChannelAdmin::Observer_Handle h)
+{
+ this->handle_ = h;
+}
+
+RtecEventChannelAdmin::Observer_Handle
+TAO_EC_Gateway::observer_handle (void) const
+{
+ return this->handle_;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL