SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
JacobianPlugin.h
Go to the documentation of this file.
1
17/*
18 * JacobianPlugin.h
19 *
20 * Created on: Oct 08, 2018
21 * Author: Alejandro Alvarez Ayllon
22 */
23
24
25#ifndef _SEIMPLEMENTATION_PLUGIN_JACOBIAN_JACOBIANPLUGIN_H_
26#define _SEIMPLEMENTATION_PLUGIN_JACOBIAN_JACOBIANPLUGIN_H_
27
29
30namespace SourceXtractor {
31
32class JacobianPlugin: public Plugin {
33public:
34 virtual ~JacobianPlugin() = default;
35
36 std::string getIdString() const override;
37 void registerPlugin(PluginAPI& plugin_api) override;
38};
39
40} // end SourceXtractor
41
42#endif // _SEIMPLEMENTATION_PLUGIN_JACOBIAN_JACOBIANPLUGIN_H_
std::string getIdString() const override
void registerPlugin(PluginAPI &plugin_api) override
virtual ~JacobianPlugin()=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