Lines Matching full:callback
22 // This callback interface to be implemented by clients of this
24 class Callback {
30 virtual ~Callback() {}
39 // Registers a callback handler interface
42 bool RegisterTickHandler(Callback *tick_handler);
44 // Unregisters a callback handler interface
46 bool UnregisterTickHandler(Callback *tick_handler);
73 // A list type that holds all registered callback interfaces
74 typedef std::vector<Callback*> TickHandlerListType;
85 // A list that holds all registered callback interfaces