mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
22 lines
298 B
C++
22 lines
298 B
C++
|
|
#ifndef BRO_PLUGIN_DEMO_FOO
|
|
#define BRO_PLUGIN_DEMO_FOO
|
|
|
|
#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;
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|