HMSBEAGLE  1.0.0
BeaglePlugin.h
1 
8 #include "Plugin.h"
9 
10 namespace beagle {
11 
12 class BeaglePlugin : public Plugin
13 {
14  public:
15  BeaglePlugin(const char* plugin_name)
16  : Plugin(plugin_name,"Text") { }
17  virtual const char* getSayHelloString() const = 0;
18 };
19 
20 } // namespace beagle
21 
22