mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Move a few low-use classes to namespaces
This commit is contained in:
parent
886fc102b8
commit
c9ab1f93e7
53 changed files with 252 additions and 122 deletions
|
@ -11,6 +11,8 @@ extern "C" {
|
|||
ZEEK_FORWARD_DECLARE_NAMESPACED(Val, zeek);
|
||||
ZEEK_FORWARD_DECLARE_NAMESPACED(SubNetVal, zeek);
|
||||
|
||||
namespace zeek::detail {
|
||||
|
||||
class PrefixTable {
|
||||
private:
|
||||
struct iterator {
|
||||
|
@ -61,3 +63,7 @@ private:
|
|||
patricia_tree_t* tree;
|
||||
data_fn_t delete_function;
|
||||
};
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
||||
using PrefixTable [[deprecated("Remove in v4.1. Use zeek::detail::PrefixTable.")]] = zeek::detail::PrefixTable;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue