29 #ifndef __BASE_CALLBACK_HH__ 30 #define __BASE_CALLBACK_HH__ 61 template <
class T,
void (T::* F)()>
72 : object(o), autoDestroy(auto_destroy)
76 : object(&o), autoDestroy(auto_destroy)
98 std::string
name()
const {
return "CallbackQueue"; }
107 callbacks.push_back(callback);
110 template <
class T,
void (T::* F)()>
117 template <
class T,
void (T::* F)()>
127 bool empty()
const {
return callbacks.empty(); }
135 queue::iterator
i = callbacks.begin();
136 queue::iterator end = callbacks.end();
154 #endif // __BASE_CALLBACK_HH__
virtual void process()=0
virtual process function that is invoked when the callback queue is executed.
void process()
process all callbacks
void process()
virtual process function that is invoked when the callback queue is executed.
virtual void autoDestruct()
virtual ~Callback()
virtualize the destructor to make sure that the correct one gets called.
MakeCallback(T &o, bool auto_destroy=false)
void add(Callback *callback)
Add a callback to the end of the queue.
queue callbacks
List of all callbacks.
void clear()
clear the callback queue
bool empty() const
Find out if there are any callbacks in the queue.
Helper template class to turn a simple class member function into a callback.
std::list< Callback * > queue
Simple typedef for the data structure that stores all of the callbacks.
MakeCallback(T *o, bool auto_destroy=false)