/*************************************************
* Timestamp Functions Header File *
* (C) 1999-2007 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
syntax highlighted by Code2HTML, v. 0.9.1