mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
30 lines
642 B
C++
30 lines
642 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
// Structures and methods for implementing watches in the Zeek debugger.
|
|
|
|
#pragma once
|
|
|
|
namespace zeek::detail {
|
|
|
|
class Expr;
|
|
|
|
// Automatic displays: display these at each stoppage.
|
|
class DbgDisplay {
|
|
public:
|
|
DbgDisplay(Expr* expr_to_display);
|
|
|
|
bool IsEnabled() { return enabled; }
|
|
bool SetEnable(bool do_enable) {
|
|
bool old_value = enabled;
|
|
enabled = do_enable;
|
|
return old_value;
|
|
}
|
|
|
|
const Expr* Expression() const { return expression; }
|
|
|
|
protected:
|
|
bool enabled;
|
|
Expr* expression;
|
|
};
|
|
|
|
} // namespace zeek::detail
|