mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
Move base Tag class to zeek namespace
This commit is contained in:
parent
8517d70e52
commit
87054d9d6b
10 changed files with 53 additions and 45 deletions
|
@ -14,9 +14,9 @@ ZEEK_FORWARD_DECLARE_NAMESPACED(EnumVal, zeek);
|
|||
ZEEK_FORWARD_DECLARE_NAMESPACED(EnumType, zeek);
|
||||
|
||||
namespace zeek {
|
||||
|
||||
using EnumTypePtr = zeek::IntrusivePtr<zeek::EnumType>;
|
||||
using EnumValPtr = zeek::IntrusivePtr<zeek::EnumVal>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Class to identify an analyzer type.
|
||||
|
@ -157,3 +157,7 @@ private:
|
|||
subtype_t subtype; // Subtype.
|
||||
mutable zeek::EnumValPtr val; // Script-layer value.
|
||||
};
|
||||
|
||||
} // namespace zeek
|
||||
|
||||
using Tag [[deprecated("Remove in v4.1. Use zeek::Tag instead")]] = zeek::Tag;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue