Doxygenified a comment

svn-id: r32827
This commit is contained in:
Max Horn 2008-06-28 15:27:40 +00:00
parent 3b1a60c3b2
commit e68efca5a1

View file

@ -38,14 +38,15 @@ private:
void *_timerHandler; void *_timerHandler;
TimerSlot *_head; TimerSlot *_head;
public: public:
DefaultTimerManager(); DefaultTimerManager();
~DefaultTimerManager(); ~DefaultTimerManager();
bool installTimerProc(TimerProc proc, int32 interval, void *refCon); bool installTimerProc(TimerProc proc, int32 interval, void *refCon);
void removeTimerProc(TimerProc proc); void removeTimerProc(TimerProc proc);
// Timer callback, to be invoked at regular time intervals by the backend. /**
* Timer callback, to be invoked at regular time intervals by the backend.
*/
void handler(); void handler();
}; };