Test case for a dynamic input reader.

This commit is contained in:
Robin Sommer 2014-07-31 12:04:27 -07:00
parent f45526f373
commit 3d1442e86b
11 changed files with 423 additions and 72 deletions

View file

@ -0,0 +1,22 @@
#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