3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00
z3/lib/timer.h
Leonardo de Moura e9eab22e5c Z3 sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-02 11:35:25 -07:00

40 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_ */