SourceXtractorPlusPlus  0.15
Please provide a description of the project.
AutoPhotometryPlugin.h
Go to the documentation of this file.
1 
17 /*
18  * AutoPhotometryPlugin.h
19  *
20  * Created on: Jul 18, 2018
21  * Author: mkuemmel@usm.lmu.de
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYPLUGIN_H_
25 #define _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYPLUGIN_H_
26 
28 
29 namespace SourceXtractor {
30 
31 class AutoPhotometryPlugin : public Plugin {
32 
33 public:
34 
38  virtual ~AutoPhotometryPlugin() = default;
39 
40  virtual void registerPlugin(PluginAPI& plugin_api) override;
41  virtual std::string getIdString() const override;
42 
43 private:
44 
45 };
46 
47 }
48 
49 
50 #endif /* _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYPLUGIN_H_ */
virtual std::string getIdString() const override
virtual void registerPlugin(PluginAPI &plugin_api) override
virtual ~AutoPhotometryPlugin()=default
Destructor.
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