mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

This largely copies over Spicy's `.clang-format` configuration file. The one place where we deviate is header include order since Zeek depends on headers being included in a certain order.
18 lines
343 B
C++
18 lines
343 B
C++
|
|
#pragma once
|
|
|
|
#include <zeek/plugin/Plugin.h>
|
|
|
|
namespace btest::plugin::Demo_Foo {
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
protected:
|
|
// Overridden from zeek::plugin::Plugin.
|
|
zeek::plugin::Configuration Configure() override;
|
|
|
|
void InitPostScript() override;
|
|
};
|
|
|
|
extern Plugin plugin;
|
|
|
|
} // namespace btest::plugin::Demo_Foo
|