Files
TCPlayerbotCore/dep/acelite/ace/Functor.cpp
T

44 lines
1.0 KiB
C++
Raw Normal View History

2010-06-07 19:10:55 +02:00
//=============================================================================
/**
* @file Functor.cpp
*
2010-11-04 05:30:29 +01:00
* $Id: Functor.cpp 91286 2010-08-05 09:04:31Z johnnyw $
2010-06-07 19:10:55 +02:00
*
* Non-inlinable method definitions for non-templatized classes
* and template specializations implementing the GOF Command Pattern,
* and STL-style functors.
*
*
* @author Chris Gill <[email protected]>
*
* Based on Command Pattern implementations originally done by
*
* Carlos O'Ryan <[email protected]>
* Douglas C. Schmidt <[email protected]>
* Sergio Flores-Gaitan <[email protected]>
*
* and on STL-style functor implementations originally done by
*
* Irfan Pyarali <[email protected]>
*/
//=============================================================================
#include "ace/Functor_T.h"
#include "ace/Functor.h"
#if !defined (__ACE_INLINE__)
#include "ace/Functor.inl"
#endif /* __ACE_INLINE__ */
2010-11-04 05:30:29 +01:00
2010-06-07 19:10:55 +02:00
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_Command_Base::~ACE_Command_Base (void)
{
}
ACE_END_VERSIONED_NAMESPACE_DECL