mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
22 lines
380 B
C++
22 lines
380 B
C++
// Implementation of watches
|
|
|
|
#include "zeek-config.h"
|
|
|
|
#include "Debug.h"
|
|
#include "DbgWatch.h"
|
|
#include "Reporter.h"
|
|
|
|
// Support classes
|
|
DbgWatch::DbgWatch(BroObj* var_to_watch)
|
|
{
|
|
reporter->InternalError("DbgWatch unimplemented");
|
|
}
|
|
|
|
DbgWatch::DbgWatch(zeek::detail::Expr* expr_to_watch)
|
|
{
|
|
reporter->InternalError("DbgWatch unimplemented");
|
|
}
|
|
|
|
DbgWatch::~DbgWatch()
|
|
{
|
|
}
|