//============================================================================= /** * @file Functor.cpp * * 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 * Douglas C. Schmidt * 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_BEGIN_VERSIONED_NAMESPACE_DECL int ACE_Noop_Command::execute(void*) { return 0; } ACE_END_VERSIONED_NAMESPACE_DECL