#include "ace/pre.h"
#include "ace/Functor.h"
#include "ace/post.h"
Include dependency graph for Functor_T.h:
This graph shows which files directly or indirectly include this file:
Compounds | |
class | ACE_Command_Callback |
class | ACE_Equal_To |
class | ACE_Hash |
class | ACE_Less_Than |
class | ACE_Pointer_Hash |
Functor_T.h,v 4.14 2000/11/01 22:16:22 coryan Exp
Templatized classes for implementing function objects that are used in various places in ACE. There are currently two major categories of function objects in ACE: GOF Command Pattern objects, and STL-style functors for comparison of container elements. The command objects are invoked via an <execute> method, while the STL-style functors are invoked via an <operator()> method.