aboutsummaryrefslogtreecommitdiffstats
path: root/include/timers.h
blob: d639d63f5c67b490da012108875a7febcb2a2c6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*************************************************
* Timestamp Functions Header File                *
* (C) 1999-2006 The Botan Project                *
*************************************************/

#ifndef BOTAN_TIMERS_H__
#define BOTAN_TIMERS_H__

#include <botan/types.h>

namespace Botan {

/*************************************************
* Timer Interface                                *
*************************************************/
class Timer
   {
   public:
      virtual u64bit clock() const;
      virtual ~Timer() {}
   };

}

#endif