LibCT 2.0
|
Functor is a base class used to store function pointers. More...
#include <Functor.h>
Public Member Functions | |
virtual void | operator() (void *pArg)=0 |
Call operator. |
Functor is a base class used to store function pointers.
Functor is used so we can store TemplateFunctors created with different template arguments in the same list
virtual void LibCT::Functor::operator() | ( | void * | pArg | ) | [pure virtual] |
Call operator.
pArg | Data to pass to the function |
Implemented in LibCT::TemplateFunctor< T, U >.