aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 00:03:19 +0000
committerlloyd <[email protected]>2008-09-29 00:03:19 +0000
commit8269e2897e0a652bbd949d38b74873976a98adeb (patch)
tree2ea103d5d7d4cf9073b4ac06cb5d5f7c62be16a6 /include
parentab81a9d95264914ab34cb4e7134f827e3128c326 (diff)
Move timer base class into a module, add dep from other timer modules
Diffstat (limited to 'include')
-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