source: pacpussensors/trunk/NMEA0183/include/POSITI.hpp

Last change on this file was 59, checked in by DHERBOMEZ Gérald, 10 years ago

Integration of new modules:

  • GPS NMEA0183 decoder
  • Span CPT Decoder

Update of:

File size: 778 bytes
Line 
1#if ! defined( POSITI_CLASS_HEADER )
2
3#define POSITI_CLASS_HEADER
4
5#include "qstring.h"
6#include "NMEA0183_slim.h"
7#include "LatLong.hpp"
8#include "Sentence.hpp"
9#include "Response.hpp"
10
11class POSITI : public RESPONSE
12{
13 public:
14
15 POSITI();
16 virtual ~POSITI();
17
18 /*
19 ** Data
20 */
21 double latitude;
22 double longitude;
23 double altitude;
24
25 /*
26 ** Methods
27 */
28
29 virtual void Empty( void );
30 virtual QString PlainEnglish( void ) const;
31 virtual BOOL Parse( const SENTENCE& sentence );
32 virtual BOOL Write( SENTENCE& sentence );
33
34 /*
35 ** Operators
36 */
37
38 virtual const POSITI& operator = ( const POSITI& source );
39};
40
41#endif // POSITI_CLASS_HEADER
Note: See TracBrowser for help on using the repository browser.