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