Move IntrusivePtr and utility methods to the zeek namespace

This commit is contained in:
Tim Wojtulewicz 2020-06-24 16:40:00 -04:00
parent 4668378d91
commit 9364e6a5b7
255 changed files with 3761 additions and 3730 deletions

View file

@ -11,7 +11,10 @@
#include <map>
#include <string>
namespace zeek {
template <class T> class IntrusivePtr;
}
class Val;
ZEEK_FORWARD_DECLARE_NAMESPACED(Stmt, zeek::detail);
@ -162,7 +165,7 @@ int dbg_handle_debug_input(); // read a line and then have it executed
int dbg_execute_command(const char* cmd);
// Interactive expression evaluation.
IntrusivePtr<Val> dbg_eval_expr(const char* expr);
zeek::IntrusivePtr<Val> dbg_eval_expr(const char* expr);
// Extra debugging facilities.
// TODO: current connections, memory allocated, other internal data structures.