SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
GrowthCurvePlugin.h
Go to the documentation of this file.
1
18#ifndef _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVEPLUGIN_H_
19#define _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVEPLUGIN_H_
20
22
23namespace SourceXtractor {
24
26public:
27 virtual ~GrowthCurvePlugin() = default;
28
29 std::string getIdString() const override;
30
31 void registerPlugin(PluginAPI& plugin_api) override;
32
33public:
34};
35
36} // end of namespace SourceXtractor
37
38#endif /* _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVEPLUGIN_H_ */
void registerPlugin(PluginAPI &plugin_api) override
std::string getIdString() const override
virtual ~GrowthCurvePlugin()=default
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