LibCT 2.0

Include/Functor.h

Go to the documentation of this file.
00001 // ------------------------------------------------------------------
00012 #ifndef _LIBCT_FUNCTOR_H
00013 #define _LIBCT_FUNCTOR_H
00014 
00015 namespace LibCT
00016 {
00018 
00022         class Functor
00023         {
00024         public:
00026                 virtual void operator()(
00027                         void* pArg                      
00028                         ) = 0;
00029         };
00030 }
00031 
00032 #endif // _LIBCT_FUNCTOR_H