LRAUV  revA
DerivationModule.h
Go to the documentation of this file.
1 
16 #ifndef DERIVATIONMODULE_H_
17 #define DERIVATIONMODULE_H_
18 
19 #include "module/Module.h"
20 
28 class DerivationModule : public Module
29 {
30 public:
33 
35  virtual ~DerivationModule();
36 
37  void loadComponents( Logger& logger );
38 
39 private:
40 
41 };
42 
44 
47 extern "C" Module* create_module()
48 {
49  return new DerivationModule();
50 }
51 
54 extern "C" void destroy_module( Module* module )
55 {
56  delete module;
57 }
58 
59 #endif /*DERIVATIONMODULE_H_*/
Client-side interface for injecting log data into the log queue.
Definition: Logger.h:30
void destroy_module(Module *module)
destroy_module must be implemented, following the class implementation:
Definition: DerivationModule.h:54
virtual ~DerivationModule()
Destructor.
Definition: DerivationModule.cpp:57
Module is the abstract base class for a collection of Component objects that can be contained in a lo...
Definition: Module.h:45
void loadComponents(Logger &logger)
loads the collection of components belonging to this module
Definition: DerivationModule.cpp:29
DerivationModule()
Constructor.
Definition: DerivationModule.cpp:24
The DerivationModule provides components that typically take the outputs of a navigation or science s...
Definition: DerivationModule.h:28
Contains the Module class definition.
Module * create_module()
Class factories.
Definition: DerivationModule.h:47