mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
16 lines
271 B
C++
16 lines
271 B
C++
// Structures and methods for implementing watches in the Bro debugger.
|
|
|
|
#pragma once
|
|
|
|
#include "Debug.h"
|
|
|
|
class DbgWatch {
|
|
public:
|
|
explicit DbgWatch(BroObj* var_to_watch);
|
|
explicit DbgWatch(Expr* expr_to_watch);
|
|
~DbgWatch();
|
|
|
|
protected:
|
|
BroObj* var;
|
|
Expr* expr;
|
|
};
|