mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
24 lines
418 B
C++
24 lines
418 B
C++
// 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
|