// $Id$ // ============================================================================ // // = LIBRARY // ace // // = FILENAME // Functor.cpp // // = DESCRIPTION // Non-inlinable method definitions for non-templatized classes // and template specializations implementing the GOF Command Pattern, // and STL-style functors. // // = AUTHOR // Chris Gill // // Based on Command Pattern implementations originally done by // // Carlos O'Ryan and // Douglas C. Schmidt and // Sergio Flores-Gaitan // // and on STL-style functor implementations originally done by // // Irfan Pyarali // // ============================================================================ #include "ace/Functor_T.h" #include "ace/Functor.h" #if !defined (__ACE_INLINE__) #include "ace/Functor.inl" #endif /* __ACE_INLINE__ */ ACE_RCSID(ace, Functor, "$Id$") ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Command_Base::~ACE_Command_Base (void) { } ACE_END_VERSIONED_NAMESPACE_DECL