mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 11:17:07 +00:00
29 lines
362 B
C++
29 lines
362 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
event_handler.h
|
|
|
|
Abstract:
|
|
|
|
Abstract event handler.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2011-04-26.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _EVENT_HANDLER_H_
|
|
#define _EVENT_HANDLER_H_
|
|
|
|
class event_handler {
|
|
public:
|
|
virtual ~event_handler() {}
|
|
virtual void operator()() = 0;
|
|
};
|
|
|
|
#endif
|