mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Rename BroObj to Obj
This commit is contained in:
parent
736a3f53d4
commit
02cef05f93
36 changed files with 105 additions and 103 deletions
4
src/ID.h
4
src/ID.h
|
@ -45,7 +45,7 @@ enum IDScope { SCOPE_FUNCTION, SCOPE_MODULE, SCOPE_GLOBAL };
|
|||
class ID;
|
||||
using IDPtr = zeek::IntrusivePtr<ID>;
|
||||
|
||||
class ID final : public BroObj, public notifier::Modifiable {
|
||||
class ID final : public Obj, public notifier::Modifiable {
|
||||
public:
|
||||
static inline const IDPtr nil;
|
||||
|
||||
|
@ -137,7 +137,7 @@ public:
|
|||
|
||||
std::string GetDeprecationWarning() const;
|
||||
|
||||
void Error(const char* msg, const BroObj* o2 = nullptr);
|
||||
void Error(const char* msg, const Obj* o2 = nullptr);
|
||||
|
||||
void Describe(ODesc* d) const override;
|
||||
// Adds type and value to description.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue