zeek/src/DbgWatch.cc
Robin Sommer 3957091e1b Renaming config.h to bro-config.h.
A couple times now I had this conflicting with files of the same name
in other projects.
2015-07-28 11:57:04 -07:00

22 lines
365 B
C++

// Implementation of watches
#include "bro-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(Expr* expr_to_watch)
{
reporter->InternalError("DbgWatch unimplemented");
}
DbgWatch::~DbgWatch()
{
}