diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
commit | 7a52d43a162b23d9e85e7b955e9b2c8e9caf550e (patch) | |
tree | 66a84b20d47f2269d8bdc6e0323f338763424d3a /ACE/ace/Notification_Strategy.cpp | |
parent | 0e49389337be86641451a5c36c24bf742fe97523 (diff) | |
download | ATCD-7a52d43a162b23d9e85e7b955e9b2c8e9caf550e.tar.gz |
Repo restructuring
Diffstat (limited to 'ACE/ace/Notification_Strategy.cpp')
-rw-r--r-- | ACE/ace/Notification_Strategy.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ACE/ace/Notification_Strategy.cpp b/ACE/ace/Notification_Strategy.cpp new file mode 100644 index 00000000000..f12bf3a569e --- /dev/null +++ b/ACE/ace/Notification_Strategy.cpp @@ -0,0 +1,22 @@ +#include "ace/Notification_Strategy.h" + +#if !defined (__ACE_INLINE__) +#include "ace/Notification_Strategy.inl" +#endif /* __ACE_INLINE __ */ + +ACE_RCSID(ace, Strategies, "$Id$") + +ACE_BEGIN_VERSIONED_NAMESPACE_DECL + +ACE_Notification_Strategy::ACE_Notification_Strategy (ACE_Event_Handler *eh, + ACE_Reactor_Mask mask) + : eh_ (eh), + mask_ (mask) +{ +} + +ACE_Notification_Strategy::~ACE_Notification_Strategy (void) +{ +} + +ACE_END_VERSIONED_NAMESPACE_DECL |