/************************************************* * Unix Timer Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_TIMER_UNIX_H__ #define BOTAN_TIMER_UNIX_H__ #include namespace Botan { /************************************************* * Unix Timer * *************************************************/ class BOTAN_DLL Unix_Timer : public Timer { public: u64bit clock() const; }; } #endif