Move all of the base plugin classes into the zeek::plugin namespace

This commit is contained in:
Tim Wojtulewicz 2020-05-13 17:11:03 -07:00
parent cbdb8ee074
commit e77e8c4b7b
28 changed files with 404 additions and 240 deletions

View file

@ -9,7 +9,7 @@
using namespace input;
Component::Component(const std::string& name, factory_callback arg_factory)
: plugin::Component(plugin::component::READER, name)
: zeek::plugin::Component(zeek::plugin::component::READER, name)
{
factory = arg_factory;
}
@ -29,4 +29,3 @@ void Component::DoDescribe(ODesc* d) const
d->Add("Input::READER_");
d->Add(CanonicalName());
}