/* -*- C++ -*- */ // $Id$ // ============================================================================ // // = LIBRARY // ace // // = FILENAME // Functor.i // // = DESCRIPTION // Inlinable method definitions for non-templatized classes // implementing the GOF Command Pattern, also known as functors // or function objects. // // = AUTHOR // Chris Gill // // Based on Command Pattern implementations originally done by // // Carlos O'Ryan and // Douglas C. Schmidt and // Sergio Flores-Gaitan // // ============================================================================ // Default constructor. ACE_INLINE ACE_Command_Base::ACE_Command_Base (void) { } // Virtaul destructor. ACE_INLINE ACE_Command_Base::~ACE_Command_Base (void) { }