diff options
Diffstat (limited to 'dep/ACE_wrappers/ace/Recyclable.cpp')
-rw-r--r-- | dep/ACE_wrappers/ace/Recyclable.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dep/ACE_wrappers/ace/Recyclable.cpp b/dep/ACE_wrappers/ace/Recyclable.cpp index 890ece7e265..1a31631fd9a 100644 --- a/dep/ACE_wrappers/ace/Recyclable.cpp +++ b/dep/ACE_wrappers/ace/Recyclable.cpp @@ -1,17 +1,23 @@ //$Id: Recyclable.cpp 80826 2008-03-04 14:51:23Z wotte $ #include "ace/Recyclable.h" + #if !defined (__ACE_INLINE__) #include "ace/Recyclable.inl" #endif /* __ACE_INLINE __ */ + ACE_RCSID(ace, Recyclable, "$Id: Recyclable.cpp 80826 2008-03-04 14:51:23Z wotte $") + ACE_BEGIN_VERSIONED_NAMESPACE_DECL + ACE_Recyclable::ACE_Recyclable (ACE_Recyclable_State initial_state) : recycle_state_ (initial_state) { } + ACE_Recyclable::~ACE_Recyclable (void) { } + ACE_END_VERSIONED_NAMESPACE_DECL |