mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
Move Type types to zeek namespace
This commit is contained in:
parent
4a1b39a2be
commit
ed13972924
120 changed files with 2094 additions and 1934 deletions
10
src/Desc.h
10
src/Desc.h
|
@ -25,7 +25,7 @@ typedef enum {
|
|||
class BroFile;
|
||||
class IPAddr;
|
||||
class IPPrefix;
|
||||
class BroType;
|
||||
FORWARD_DECLARE_NAMESPACED(BroType, zeek);
|
||||
|
||||
class ODesc {
|
||||
public:
|
||||
|
@ -146,9 +146,9 @@ public:
|
|||
|
||||
// Used to determine recursive types. Records push their types on here;
|
||||
// if the same type (by address) is re-encountered, processing aborts.
|
||||
bool PushType(const BroType* type);
|
||||
bool PopType(const BroType* type);
|
||||
bool FindType(const BroType* type);
|
||||
bool PushType(const zeek::BroType* type);
|
||||
bool PopType(const zeek::BroType* type);
|
||||
bool FindType(const zeek::BroType* type);
|
||||
|
||||
protected:
|
||||
void Indent();
|
||||
|
@ -204,5 +204,5 @@ protected:
|
|||
bool do_flush;
|
||||
bool include_stats;
|
||||
|
||||
std::set<const BroType*> encountered_types;
|
||||
std::set<const zeek::BroType*> encountered_types;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue