|
Last change
on this file was 59, checked in by DHERBOMEZ Gérald, 11 years ago |
|
Integration of new modules:
- GPS NMEA0183 decoder
- Span CPT Decoder
Update of:
|
|
File size:
775 bytes
|
| Line | |
|---|
| 1 | #if ! defined( UTMWGS_CLASS_HEADER )
|
|---|
| 2 |
|
|---|
| 3 | #define UTMWGS_CLASS_HEADER
|
|---|
| 4 |
|
|---|
| 5 | #include "qstring.h"
|
|---|
| 6 | #include "NMEA0183_slim.h"
|
|---|
| 7 | #include "Sentence.hpp"
|
|---|
| 8 | #include "Response.hpp"
|
|---|
| 9 |
|
|---|
| 10 | class UTMWGS : public RESPONSE
|
|---|
| 11 | {
|
|---|
| 12 | public:
|
|---|
| 13 |
|
|---|
| 14 | UTMWGS();
|
|---|
| 15 | virtual ~UTMWGS();
|
|---|
| 16 |
|
|---|
| 17 | /*
|
|---|
| 18 | ** Data
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | QChar UTMzoneChar ; //
|
|---|
| 22 | int UTMzone;
|
|---|
| 23 | double east;
|
|---|
| 24 | double north;
|
|---|
| 25 | double up;
|
|---|
| 26 |
|
|---|
| 27 | /*
|
|---|
| 28 | ** Methods
|
|---|
| 29 | */
|
|---|
| 30 |
|
|---|
| 31 | virtual void Empty( void );
|
|---|
| 32 | virtual QString PlainEnglish( void ) const;
|
|---|
| 33 | virtual BOOL Parse( const SENTENCE& sentence );
|
|---|
| 34 | virtual BOOL Write( SENTENCE& sentence );
|
|---|
| 35 |
|
|---|
| 36 | /*
|
|---|
| 37 | ** Operators
|
|---|
| 38 | */
|
|---|
| 39 |
|
|---|
| 40 | virtual const UTMWGS& operator = ( const UTMWGS& source );
|
|---|
| 41 | };
|
|---|
| 42 |
|
|---|
| 43 | #endif // UTMWGS_CLASS_HEADER
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.