SourceXtractorPlusPlus  0.13
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 
30 namespace SourceXtractor {
31 
32 class JacobianPlugin: public Plugin {
33 public:
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_
virtual ~JacobianPlugin()=default
void registerPlugin(PluginAPI &plugin_api) override
STL class.
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