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;
TimerSlot *_head;
public:
DefaultTimerManager();
~DefaultTimerManager();
bool installTimerProc(TimerProc proc, int32 interval, void *refCon);
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();
};