mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18:20 +00:00
Move all debugger code into the zeek::detail namespace
This commit is contained in:
parent
834b76f94f
commit
35c61697d9
17 changed files with 525 additions and 419 deletions
|
@ -8,13 +8,19 @@ ZEEK_FORWARD_DECLARE_NAMESPACED(Expr, zeek::detail);
|
|||
namespace zeek { class Obj; }
|
||||
using BroObj [[deprecated("Remove in v4.1. Use zeek:Obj instead.")]] = zeek::Obj;
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
class DbgWatch {
|
||||
public:
|
||||
explicit DbgWatch(zeek::Obj* var_to_watch);
|
||||
explicit DbgWatch(zeek::detail::Expr* expr_to_watch);
|
||||
~DbgWatch();
|
||||
~DbgWatch() = default;
|
||||
|
||||
protected:
|
||||
zeek::Obj* var;
|
||||
zeek::detail::Expr* expr;
|
||||
};
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
||||
using DbgWatch [[deprecated("Remove in v4.1. Using zeek::detail::DbgWatch.")]] = zeek::detail::DbgWatch;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue