Below is the file 'modules/tm_unix/tm_unix.h' from this revision. You can also download the file.

/*************************************************
* Unix Timer Header File                         *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#ifndef BOTAN_EXT_TIMER_UNIX_H__
#define BOTAN_EXT_TIMER_UNIX_H__

#include <botan/timers.h>

namespace Botan {

/*************************************************
* Unix Timer                                     *
*************************************************/
class Unix_Timer : public Timer
   {
   public:
      u64bit clock() const;
   };

}

#endif