aboutsummaryrefslogtreecommitdiff
path: root/backends/timer/default/default-timer.h
diff options
context:
space:
mode:
authorMax Horn2008-06-28 15:27:40 +0000
committerMax Horn2008-06-28 15:27:40 +0000
commite68efca5a19fd738a78a61ea21efd19280521f31 (patch)
tree973035707a2ca4eea28dd0a631ef2bae87e44cb0 /backends/timer/default/default-timer.h
parent3b1a60c3b23fa509cb2a9d3f2f85eb4d9997724b (diff)
downloadscummvm-rg350-e68efca5a19fd738a78a61ea21efd19280521f31.tar.gz
scummvm-rg350-e68efca5a19fd738a78a61ea21efd19280521f31.tar.bz2
scummvm-rg350-e68efca5a19fd738a78a61ea21efd19280521f31.zip
Doxygenified a comment
svn-id: r32827
Diffstat (limited to 'backends/timer/default/default-timer.h')
-rw-r--r--backends/timer/default/default-timer.h5
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();
};