From 99aa8c60282c7b8072eb35eb9ac815702f5bf586 Mon Sep 17 00:00:00 2001 From: "William R. Otte" Date: Tue, 4 Mar 2008 14:51:23 +0000 Subject: undoing accidental deletion --- ACE/ace/Notification_Strategy.inl | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ACE/ace/Notification_Strategy.inl (limited to 'ACE/ace/Notification_Strategy.inl') diff --git a/ACE/ace/Notification_Strategy.inl b/ACE/ace/Notification_Strategy.inl new file mode 100644 index 00000000000..47479030ab6 --- /dev/null +++ b/ACE/ace/Notification_Strategy.inl @@ -0,0 +1,31 @@ +// -*- C++ -*- +// +//$Id$ + +ACE_BEGIN_VERSIONED_NAMESPACE_DECL + +ACE_INLINE ACE_Event_Handler * +ACE_Notification_Strategy::event_handler (void) +{ + return eh_; +} + +ACE_INLINE void +ACE_Notification_Strategy::event_handler (ACE_Event_Handler *eh) +{ + this->eh_ = eh; +} + +ACE_INLINE ACE_Reactor_Mask +ACE_Notification_Strategy::mask (void) const +{ + return mask_; +} + +ACE_INLINE void +ACE_Notification_Strategy::mask (ACE_Reactor_Mask m) +{ + this->mask_ = m; +} + +ACE_END_VERSIONED_NAMESPACE_DECL -- cgit v1.2.1