summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEvent.inl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEvent.inl')
-rw-r--r--trunk/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEvent.inl30
1 files changed, 30 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEvent.inl b/trunk/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEvent.inl
new file mode 100644
index 00000000000..4c8f0aab997
--- /dev/null
+++ b/trunk/TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEvent.inl
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+TAO_CEC_TypedEvent::TAO_CEC_TypedEvent (void)
+{
+}
+
+ACE_INLINE
+TAO_CEC_TypedEvent::TAO_CEC_TypedEvent (CORBA::NVList_ptr list,
+ const char * operation)
+ : list_ (list),
+ operation_ (operation)
+{
+}
+
+ACE_INLINE
+TAO_CEC_TypedEvent&
+TAO_CEC_TypedEvent::operator= (const TAO_CEC_TypedEvent& other)
+{
+ this->list_ = CORBA::NVList::_duplicate (other.list_);
+ this->operation_ = CORBA::string_dup (other.operation_);
+
+ return *this;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL