Initial import of svn+ssh:://svn.icir.org/bro/trunk/bro as of r7088

This commit is contained in:
Robin Sommer 2010-09-27 20:42:30 -07:00
commit 61757ac78b
1383 changed files with 380824 additions and 0 deletions

21
src/DbgWatch.h Normal file
View file

@ -0,0 +1,21 @@
// $Id: DbgWatch.h 80 2004-07-14 20:15:50Z jason $
// Structures and methods for implementing watches in the Bro debugger.
#ifndef dbgwatch_h
#define dbgwatch_h
#include "Debug.h"
class DbgWatch {
public:
DbgWatch(BroObj* var_to_watch);
DbgWatch(Expr* expr_to_watch);
~DbgWatch();
protected:
BroObj* var;
Expr* expr;
};
#endif