HMSBEAGLE
1.0.0
|
00001 00008 #include "Plugin.h" 00009 00010 namespace beagle { 00011 00012 class BeaglePlugin : public Plugin 00013 { 00014 public: 00015 BeaglePlugin(const char* plugin_name) 00016 : Plugin(plugin_name,"Text") { } 00017 virtual const char* getSayHelloString() const = 0; 00018 }; 00019 00020 } // namespace beagle 00021 00022