SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
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
29
30namespace SourceXtractor {
31
32class BlendedFlagPlugin : public Plugin {
33public:
34 virtual ~BlendedFlagPlugin() = default;
35
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 std::string getIdString() const
virtual ~BlendedFlagPlugin()=default
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:40
virtual TaskFactoryRegistry & getTaskFactoryRegistry() const =0
Plugins must implement this interface.
Definition Plugin.h:38