summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl b/TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl
new file mode 100644
index 00000000000..eab42f031bc
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_QOS_Info.inl
@@ -0,0 +1,23 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+TAO_EC_QOS_Info::TAO_EC_QOS_Info (void)
+ : rt_info (-1),
+ preemption_priority (0),
+ timer_id_ (-1)
+{
+}
+
+ACE_INLINE
+TAO_EC_QOS_Info::TAO_EC_QOS_Info (const TAO_EC_QOS_Info &rhs)
+ : rt_info (rhs.rt_info),
+ preemption_priority (rhs.preemption_priority),
+ timer_id_ (rhs.timer_id_)
+{
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL