summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Event.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Event.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Event.inl36
1 files changed, 32 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Event.inl b/TAO/orbsvcs/orbsvcs/Notify/Event.inl
index 019194c78aa..fa6f0bb9622 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Event.inl
+++ b/TAO/orbsvcs/orbsvcs/Notify/Event.inl
@@ -1,13 +1,41 @@
// $Id$
-ACE_INLINE TAO_NS_Property_Short&
-TAO_NS_Event::priority (void)
+ACE_INLINE const TAO_NS_Property_Short&
+TAO_NS_Event::priority (void) const
{
return this->priority_;
}
-ACE_INLINE TAO_NS_Property_Time&
-TAO_NS_Event::timeout (void)
+ACE_INLINE const TAO_NS_Property_Time&
+TAO_NS_Event::timeout (void) const
{
return this->timeout_;
}
+
+/**********************************************************/
+
+ACE_INLINE
+TAO_NS_Event_var::TAO_NS_Event_var (void)
+ : TAO_NS_Event_var_Base ()
+{
+}
+
+ACE_INLINE
+TAO_NS_Event_var::TAO_NS_Event_var (TAO_NS_Event* event)
+ : TAO_NS_Event_var_Base (event)
+{
+}
+
+/**********************************************************/
+
+ACE_INLINE
+TAO_NS_Event_Copy_var::TAO_NS_Event_Copy_var (void)
+ : TAO_NS_Event_var ()
+{
+}
+
+ACE_INLINE
+TAO_NS_Event_Copy_var::TAO_NS_Event_Copy_var (TAO_NS_Event* event)
+ : TAO_NS_Event_var (event)
+{
+}