mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18: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
474 B
C++
18 lines
474 B
C++
|
|
#include "Plugin.h"
|
|
|
|
namespace btest::plugin::Testing_WithPatchVersion {
|
|
Plugin plugin;
|
|
}
|
|
|
|
using namespace btest::plugin::Testing_WithPatchVersion;
|
|
|
|
zeek::plugin::Configuration Plugin::Configure() {
|
|
zeek::plugin::Configuration config;
|
|
config.name = "Testing::WithPatchVersion";
|
|
config.description = "Testing a plugin with a specified patch version";
|
|
config.version.major = 0;
|
|
config.version.minor = 1;
|
|
config.version.patch = 4;
|
|
return config;
|
|
}
|