mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
Run clang-format on all of our plugin test c++ files
This commit is contained in:
parent
b59bfe5558
commit
dc65b6248c
29 changed files with 400 additions and 336 deletions
|
@ -1,16 +1,18 @@
|
|||
#include "plugin/Plugin.h"
|
||||
#include "analyzer/Component.h"
|
||||
|
||||
#include "FOO.h"
|
||||
#include "analyzer/Component.h"
|
||||
|
||||
namespace btest::plugin::Foo_FOO {
|
||||
namespace btest::plugin::Foo_FOO
|
||||
{
|
||||
|
||||
class Plugin : public zeek::plugin::Plugin {
|
||||
class Plugin : public zeek::plugin::Plugin
|
||||
{
|
||||
public:
|
||||
zeek::plugin::Configuration Configure()
|
||||
{
|
||||
AddComponent(new zeek::analyzer::Component("FOO",
|
||||
btest::analyzer::FOO::FOO_Analyzer::InstantiateAnalyzer));
|
||||
AddComponent(new zeek::analyzer::Component(
|
||||
"FOO", btest::analyzer::FOO::FOO_Analyzer::InstantiateAnalyzer));
|
||||
|
||||
zeek::plugin::Configuration config;
|
||||
config.name = "FOO::Foo";
|
||||
|
@ -19,6 +21,6 @@ public:
|
|||
config.version.minor = 0;
|
||||
return config;
|
||||
}
|
||||
} plugin;
|
||||
} plugin;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue