diff options
author | Max Horn | 2008-06-28 15:27:40 +0000 |
---|---|---|
committer | Max Horn | 2008-06-28 15:27:40 +0000 |
commit | e68efca5a19fd738a78a61ea21efd19280521f31 (patch) | |
tree | 973035707a2ca4eea28dd0a631ef2bae87e44cb0 /backends/timer | |
parent | 3b1a60c3b23fa509cb2a9d3f2f85eb4d9997724b (diff) | |
download | scummvm-rg350-e68efca5a19fd738a78a61ea21efd19280521f31.tar.gz scummvm-rg350-e68efca5a19fd738a78a61ea21efd19280521f31.tar.bz2 scummvm-rg350-e68efca5a19fd738a78a61ea21efd19280521f31.zip |
Doxygenified a comment
svn-id: r32827
Diffstat (limited to 'backends/timer')
-rw-r--r-- | backends/timer/default/default-timer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/timer/default/default-timer.h b/backends/timer/default/default-timer.h index 3dbb89e24a..e7ac3d122f 100644 --- a/backends/timer/default/default-timer.h +++ b/backends/timer/default/default-timer.h @@ -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(); }; |