LRAUV  revA
DeadReckonUsingSpeedCalculator.h
Go to the documentation of this file.
1 
11 #ifndef DEADRECKONUSINGSPEEDCALCULATOR_H_
12 #define DEADRECKONUSINGSPEEDCALCULATOR_H_
13 
14 // include parent class
15 #include "navigationModule/DeadReckoner.h" // should include component/Component.h in turn
16 
17 // forward declare classes for which this class includes a pointer
18 class DataReader;
19 
29 {
30 public:
31  DeadReckonUsingSpeedCalculator( const Module* module );
33  void initialize( void );
34 
35 protected: // TODO: why private vs. protected?
37 
38  // read in velocity required for dead reckoning calculation
39  void readVehicleVelocity( void );
40 
41  // all other parameters and methods are inherited
42 };
43 
44 #endif /* DEADRECKONUSINGSPEEDCALCULATOR_H_ */
A DataAccessor that reads values from the Slate Contains a default dataValue that must not be NULL...
Definition: DataReader.h:30
void readVehicleVelocity(void)
Definition: DeadReckonUsingSpeedCalculator.cpp:52
void initialize(void)
Provide a space for initialization before being run.
Definition: DeadReckonUsingSpeedCalculator.cpp:38
Module is the abstract base class for a collection of Component objects that can be contained in a lo...
Definition: Module.h:45
Contains the DeadReckoner class declaration.
DataReader * speedReader_
Definition: DeadReckonUsingSpeedCalculator.h:36
Dead Reckoning navigator using SpeedCalculator::PLATFORM_SPEED_WRT_SEA_WATER.
Definition: DeadReckonUsingSpeedCalculator.h:28
General dead reckoner class.
Definition: DeadReckoner.h:25
virtual ~DeadReckonUsingSpeedCalculator()
Definition: DeadReckonUsingSpeedCalculator.cpp:35
DeadReckonUsingSpeedCalculator(const Module *module)
Definition: DeadReckonUsingSpeedCalculator.cpp:19