diff options
Diffstat (limited to 'include/timers.h')
-rw-r--r-- | include/timers.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/timers.h b/include/timers.h index c4213de5b..abceda449 100644 --- a/include/timers.h +++ b/include/timers.h @@ -6,17 +6,19 @@ #ifndef BOTAN_TIMERS_H__ #define BOTAN_TIMERS_H__ -#include <botan/types.h> +#include <botan/base.h> namespace Botan { /************************************************* * Timer Interface * *************************************************/ -class Timer +class Timer : public EntropySource { public: virtual u64bit clock() const; + u32bit slow_poll(byte[], u32bit); + virtual ~Timer() {} protected: static u64bit combine_timers(u32bit, u32bit, u32bit); |