aboutsummaryrefslogtreecommitdiffstats
path: root/include/timers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/timers.h')
-rw-r--r--include/timers.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/timers.h b/include/timers.h
deleted file mode 100644
index 253f71f6b..000000000
--- a/include/timers.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*************************************************
-* Timestamp Functions Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#ifndef BOTAN_TIMERS_H__
-#define BOTAN_TIMERS_H__
-
-#include <botan/rng.h>
-
-namespace Botan {
-
-/*************************************************
-* Timer Interface *
-*************************************************/
-class BOTAN_DLL Timer : public EntropySource
- {
- public:
- virtual u64bit clock() const;
- u32bit slow_poll(byte[], u32bit);
-
- virtual ~Timer() {}
- protected:
- static u64bit combine_timers(u32bit, u32bit, u32bit);
- };
-
-}
-
-#endif