SourceXtractorPlusPlus  0.10
Please provide a description of the project.
BlendedFlagPlugin.h
Go to the documentation of this file.
1 
17 /*
18  * BlendedFlagPlugin.h
19  *
20  * Created on: Oct 29, 2018
21  * Author: Alejandro Alvarez Ayllon
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAGPLUGIN_H_
25 #define _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAGPLUGIN_H_
26 
28 #include "BlendedFlagTaskFactory.h"
29 
30 namespace SourceXtractor {
31 
32 class BlendedFlagPlugin : public Plugin {
33 public:
34  virtual ~BlendedFlagPlugin() = default;
35 
36  virtual void registerPlugin(PluginAPI &plugin_api) {
38  }
39 
40  virtual std::string getIdString() const {
41  return "blended_flag";
42  }
43 };
44 
45 } // end SourceXtractor
46 
47 #endif // _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAGPLUGIN_H_
virtual ~BlendedFlagPlugin()=default
virtual std::string getIdString() const
STL class.
virtual void registerPlugin(PluginAPI &plugin_api)
This interface is given to the plugin to let it access object instances from the framework.
Definition: PluginAPI.h:39
Plugins must implement this interface.
Definition: Plugin.h:38
virtual TaskFactoryRegistry & getTaskFactoryRegistry() const =0