LRAUV  revA
DeadReckonUsingDVLWaterTrack.h
Go to the documentation of this file.
1 
11 #ifndef DEADRECKONUSINGDVLWATERTRACK_H_
12 #define DEADRECKONUSINGDVLWATERTRACK_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
19 
30 {
31 public:
32  DeadReckonUsingDVLWaterTrack( const Module* module );
34  void initialize( void );
35 
36 protected: // TODO: why private vs. protected?
38 
39  // read in velocity required for dead reckoning calculation
40  void readVehicleVelocity( void );
41 
42  // all other parameters and methods are inherited
43 };
44 
45 #endif /* DEADRECKONUSINGDVLWATERTRACK_H_ */
void readVehicleVelocity(void)
Definition: DeadReckonUsingDVLWaterTrack.cpp:52
A DataAccessor that reads values from the Slate Contains a default dataValue that must not be NULL...
Definition: UniversalDataReader.h:26
BlobReader * velocityReader_
Definition: DeadReckonUsingDVLWaterTrack.h:37
Definition: BlobReader.h:212
DeadReckonUsingDVLWaterTrack(const Module *module)
Definition: DeadReckonUsingDVLWaterTrack.cpp:19
void initialize(void)
Provide a space for initialization before being run.
Definition: DeadReckonUsingDVLWaterTrack.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.
virtual ~DeadReckonUsingDVLWaterTrack()
Definition: DeadReckonUsingDVLWaterTrack.cpp:35
Dead Reckoning navigator using:
Definition: DeadReckonUsingDVLWaterTrack.h:29
General dead reckoner class.
Definition: DeadReckoner.h:25