SourceXtractorPlusPlus  0.15
Please provide a description of the project.
AssocModePlugin.h
Go to the documentation of this file.
1 
19 #ifndef _SEIMPLEMENTATION_PLUGIN_ASSOCMODE_ASSOCMODEPLUGIN_H_
20 #define _SEIMPLEMENTATION_PLUGIN_ASSOCMODE_ASSOCMODEPLUGIN_H_
21 
23 
24 namespace SourceXtractor {
25 
26 class AssocModePlugin : public Plugin {
27 
28 public:
29 
33  virtual ~AssocModePlugin() = default;
34 
35  void registerPlugin(PluginAPI& plugin_api) override;
36  std::string getIdString() const override;
37 
38 private:
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:39
Plugins must implement this interface.
Definition: Plugin.h:38