SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
Plugin.h
Go to the documentation of this file.
1
17/*
18 * Plugin.h
19 *
20 * Created on: Jul 26, 2016
21 * Author: mschefer
22 */
23
24#ifndef _SEFRAMEWORK_PLUGIN_PLUGIN_H_
25#define _SEFRAMEWORK_PLUGIN_PLUGIN_H_
26
28
29namespace SourceXtractor {
30
38class Plugin {
39public:
40 virtual ~Plugin() = default;
41
42 virtual std::string getIdString() const = 0;
44};
45
46} // namespace SourceXtractor
47
48#endif /* _SEFRAMEWORK_PLUGIN_PLUGIN_H_ */
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
virtual std::string getIdString() const =0
virtual ~Plugin()=default
virtual void registerPlugin(PluginAPI &plugin_api)=0