aboutsummaryrefslogtreecommitdiff
path: root/backends/timer/default/default-timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/timer/default/default-timer.h')
-rw-r--r--backends/timer/default/default-timer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/timer/default/default-timer.h b/backends/timer/default/default-timer.h
index e7ac3d122f..c6da831f64 100644
--- a/backends/timer/default/default-timer.h
+++ b/backends/timer/default/default-timer.h
@@ -48,6 +48,10 @@ public:
* Timer callback, to be invoked at regular time intervals by the backend.
*/
void handler();
+
+ virtual uint32 getMillis() { return 0; }
+ virtual void delayMillis(uint msecs) {}
+ virtual void getTimeAndDate(TimeDate &t) const {}
};
#endif