SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
AssocModePlugin.h
Go to the documentation of this file.
1
17
18
19#ifndef _SEIMPLEMENTATION_PLUGIN_ASSOCMODE_ASSOCMODEPLUGIN_H_
20#define _SEIMPLEMENTATION_PLUGIN_ASSOCMODE_ASSOCMODEPLUGIN_H_
21
23
24namespace SourceXtractor {
25
26class AssocModePlugin : public Plugin {
27
28public:
29
33 virtual ~AssocModePlugin() = default;
34
35 void registerPlugin(PluginAPI& plugin_api) override;
36 std::string getIdString() const override;
37
38private:
39
40};
41
42}
43
44#endif /* _SEIMPLEMENTATION_PLUGIN_ASSOCMODE_ASSOCMODEPLUGIN_H_ */
virtual ~AssocModePlugin()=default
Destructor.
void registerPlugin(PluginAPI &plugin_api) override
std::string getIdString() const override
This interface is given to the plugin to let it access object instances from the framework.
Definition PluginAPI.h:40
Plugins must implement this interface.
Definition Plugin.h:38