00001 00002 //============================================================================= 00003 /** 00004 * @file Functor.cpp 00005 * 00006 * $Id: Functor.cpp 77027 2007-02-12 14:45:25Z johnnyw $ 00007 * 00008 * Non-inlinable method definitions for non-templatized classes 00009 * and template specializations implementing the GOF Command Pattern, 00010 * and STL-style functors. 00011 * 00012 * 00013 * @author Chris Gill <cdgill@cs.wustl.edu> 00014 * 00015 * Based on Command Pattern implementations originally done by 00016 * 00017 * Carlos O'Ryan <coryan@cs.wustl.edu> 00018 * Douglas C. Schmidt <schmidt@cs.wustl.edu> 00019 * Sergio Flores-Gaitan <sergio@cs.wustl.edu> 00020 * 00021 * and on STL-style functor implementations originally done by 00022 * 00023 * Irfan Pyarali <irfan@cs.wustl.edu> 00024 */ 00025 //============================================================================= 00026 00027 00028 #include "ace/Functor_T.h" 00029 #include "ace/Functor.h" 00030 00031 #if !defined (__ACE_INLINE__) 00032 #include "ace/Functor.inl" 00033 #endif /* __ACE_INLINE__ */ 00034 00035 ACE_RCSID(ace, Functor, "$Id: Functor.cpp 77027 2007-02-12 14:45:25Z johnnyw $") 00036 00037 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00038 00039 ACE_Command_Base::~ACE_Command_Base (void) 00040 { 00041 } 00042 00043 ACE_END_VERSIONED_NAMESPACE_DECL