aboutsummaryrefslogtreecommitdiffstats
path: root/modules/timer/posix_rt/tm_posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/timer/posix_rt/tm_posix.h')
-rw-r--r--modules/timer/posix_rt/tm_posix.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/timer/posix_rt/tm_posix.h b/modules/timer/posix_rt/tm_posix.h
new file mode 100644
index 000000000..60fa8f844
--- /dev/null
+++ b/modules/timer/posix_rt/tm_posix.h
@@ -0,0 +1,24 @@
+/*************************************************
+* POSIX Timer Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_EXT_TIMER_POSIX_H__
+#define BOTAN_EXT_TIMER_POSIX_H__
+
+#include <botan/timers.h>
+
+namespace Botan {
+
+/*************************************************
+* POSIX Timer *
+*************************************************/
+class POSIX_Timer : public Timer
+ {
+ public:
+ u64bit clock() const;
+ };
+
+}
+
+#endif