mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
19 lines
247 B
C++
19 lines
247 B
C++
|
|
#pragma once
|
|
|
|
#include <plugin/Plugin.h>
|
|
|
|
namespace plugin {
|
|
namespace Demo_Foo {
|
|
|
|
class Plugin : public ::plugin::Plugin
|
|
{
|
|
protected:
|
|
// Overridden from plugin::Plugin.
|
|
virtual plugin::Configuration Configure();
|
|
};
|
|
|
|
extern Plugin plugin;
|
|
|
|
}
|
|
}
|