mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
19 lines
286 B
C++
19 lines
286 B
C++
// Structures and methods for implementing watches in the Bro debugger.
|
|
|
|
#ifndef dbgwatch_h
|
|
#define dbgwatch_h
|
|
|
|
#include "Debug.h"
|
|
|
|
class DbgWatch {
|
|
public:
|
|
DbgWatch(BroObj* var_to_watch);
|
|
DbgWatch(Expr* expr_to_watch);
|
|
~DbgWatch();
|
|
|
|
protected:
|
|
BroObj* var;
|
|
Expr* expr;
|
|
};
|
|
|
|
#endif
|