/************************************************* * Timestamp Functions Header File * * (C) 1999-2006 The Botan Project * *************************************************/ #ifndef BOTAN_TIMERS_H__ #define BOTAN_TIMERS_H__ #include namespace Botan { /************************************************* * Timer Interface * *************************************************/ class Timer { public: virtual u64bit clock() const; virtual ~Timer() {} }; } #endif