3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-26 18:15:37 +00:00
z3/src/util/scoped_timer.h

30 lines
400 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
scoped_timer.h
Abstract:
<abstract>
Author:
Leonardo de Moura (leonardo) 2011-04-26.
Revision History:
--*/
#pragma once
#include "util/event_handler.h"
class scoped_timer {
struct imp;
imp * m_imp;
public:
scoped_timer(unsigned ms, event_handler * eh);
~scoped_timer();
static void finalize();
};