/************************************************* * Hardware Timer Header File * * (C) 1999-2007 The Botan Project * *************************************************/ #ifndef BOTAN_EXT_TIMER_HARDWARE_H__ #define BOTAN_EXT_TIMER_HARDWARE_H__ #include "botan-1.6/include/timers.h" namespace Enctain { namespace Botan { /************************************************* * Hardware Timer * *************************************************/ class Hardware_Timer : public Timer { public: u64bit clock() const; }; } } #endif