3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 23:05:26 +00:00
z3/src/util/timer.h
Leonardo de Moura 2c464d413d Reorganizing source code. Created util dir
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-20 10:19:38 -07:00

39 lines
620 B
C++

/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
timer.h
Abstract:
<abstract>
Author:
Leonardo de Moura (leonardo) 2009-01-06.
Revision History:
--*/
#ifndef _TIMER_H_
#define _TIMER_H_
class stopwatch;
/**
\brief Wrapper for the stopwatch class. It hides windows.h dependency.
*/
class timer {
stopwatch * m_watch;
public:
timer();
~timer();
void start();
double get_seconds();
bool timeout(unsigned secs) { return secs > 0 && get_seconds() > secs; }
bool ms_timeout(unsigned ms) { return ms > 0 && get_seconds() * 1000 > ms; }
};
#endif /* _TIMER_H_ */