mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
19 lines
487 B
C++
19 lines
487 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
// Implementation of watches
|
|
|
|
#include "zeek/DbgWatch.h"
|
|
|
|
#include "zeek/zeek-config.h"
|
|
|
|
#include "zeek/Debug.h"
|
|
#include "zeek/Reporter.h"
|
|
|
|
namespace zeek::detail {
|
|
|
|
// Support classes
|
|
DbgWatch::DbgWatch(zeek::Obj* var_to_watch) { reporter->InternalError("DbgWatch unimplemented"); }
|
|
|
|
DbgWatch::DbgWatch(Expr* expr_to_watch) { reporter->InternalError("DbgWatch unimplemented"); }
|
|
|
|
} // namespace zeek::detail
|