mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Move all of the base plugin classes into the zeek::plugin namespace
This commit is contained in:
parent
cbdb8ee074
commit
e77e8c4b7b
28 changed files with 404 additions and 240 deletions
|
@ -13,7 +13,7 @@
|
|||
#include "zeekygen/Manager.h"
|
||||
#include "DebugLogger.h"
|
||||
|
||||
namespace plugin {
|
||||
namespace zeek::plugin {
|
||||
|
||||
/**
|
||||
* A class that manages tracking of plugin components (e.g. analyzers) and
|
||||
|
@ -267,3 +267,9 @@ void ComponentManager<T, C>::RegisterComponent(C* component,
|
|||
}
|
||||
|
||||
} // namespace plugin
|
||||
|
||||
namespace plugin {
|
||||
template <class T, class C>
|
||||
using ComponentManager [[deprecated("Remove in v4.1. Use zeek::plugin::ComponentManager instead.")]] =
|
||||
zeek::plugin::ComponentManager<T, C>;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue