3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00
z3/src/util/timeit.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

33 lines
492 B
C++

/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
timeit.h
Abstract:
Support for timers.
Author:
Nikolaj Bjorner (nbjorner) 2006-09-22
Revision History:
Leonardo de Moura (leonardo) 2011-04-27
Rewrote using stopwatches, added support for tracking memory
--*/
#ifndef TIMEIT_H_
#define TIMEIT_H_
class timeit {
struct imp;
imp * m_imp;
public:
timeit(bool enable, char const * msg, std::ostream & out = std::cerr);
~timeit();
};
#endif