mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
18 lines
343 B
C++
18 lines
343 B
C++
|
|
#pragma once
|
|
|
|
#include "zeek/plugin/Plugin.h"
|
|
|
|
namespace btest::plugin::Demo_API {
|
|
|
|
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_API
|