Files
TrinityCore/dep/ACE_wrappers/ace/Recyclable.cpp
Neo2003 5651828bf7 [svn] * Added ACE for Linux and Windows (Thanks Derex for Linux part and partial Windows part)
* Updated to 6721 and 676
* Fixed TrinityScript logo
* Version updated to 0.2.6721.676

--HG--
branch : trunk
rename : 6700-670 => 6721-676
2008-10-04 06:17:19 -05:00

23 lines
484 B
C++

//$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