aboutsummaryrefslogtreecommitdiffstats
path: root/include/timers.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-05-18 18:33:19 +0000
committerlloyd <[email protected]>2006-05-18 18:33:19 +0000
commita2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch)
treead3d6c4fcc8dd0f403f8105598943616246fe172 /include/timers.h
Initial checkin1.5.6
Diffstat (limited to 'include/timers.h')
-rw-r--r--include/timers.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/timers.h b/include/timers.h
new file mode 100644
index 000000000..d639d63f5
--- /dev/null
+++ b/include/timers.h
@@ -0,0 +1,25 @@
+/*************************************************
+* Timestamp Functions Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_TIMERS_H__
+#define BOTAN_TIMERS_H__
+
+#include <botan/types.h>
+
+namespace Botan {
+
+/*************************************************
+* Timer Interface *
+*************************************************/
+class Timer
+ {
+ public:
+ virtual u64bit clock() const;
+ virtual ~Timer() {}
+ };
+
+}
+
+#endif