2 //=============================================================================
6 * Non-inlinable method definitions for non-templatized classes
7 * and template specializations implementing the GOF Command Pattern,
8 * and STL-style functors.
10 * @author Chris Gill <cdgill@cs.wustl.edu>
12 * Based on Command Pattern implementations originally done by
14 * Carlos O'Ryan <coryan@cs.wustl.edu>
15 * Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
16 * Sergio Flores-Gaitan <sergio@cs.wustl.edu>
18 * and on STL-style functor implementations originally done by
20 * Irfan Pyarali <irfan@cs.wustl.edu>
22 //=============================================================================
25 #include "ace/Functor_T.h"
26 #include "ace/Functor.h"
28 #if !defined (__ACE_INLINE__)
29 #include "ace/Functor.inl"
30 #endif /* __ACE_INLINE__ */
32 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
35 ACE_Noop_Command::execute(void*)
40 ACE_END_VERSIONED_NAMESPACE_DECL