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