Last change
on this file since 80 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:
831 bytes
|
Rev | Line | |
---|
[59] | 1 | #if ! defined( GST_CLASS_HEADER )
|
---|
| 2 |
|
---|
| 3 | #define GST_CLASS_HEADER
|
---|
| 4 |
|
---|
| 5 | /*!
|
---|
| 6 | ** Auteur : Maria Alwan
|
---|
| 7 | ** date : mai 2005
|
---|
| 8 | **
|
---|
| 9 | ** modification : Gérald Dherbomez, octobre 2005
|
---|
| 10 | ** ajout du temps dans la structure
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | class GST : public RESPONSE
|
---|
| 14 | {
|
---|
| 15 | public:
|
---|
| 16 |
|
---|
| 17 | GST();
|
---|
| 18 | virtual ~GST();
|
---|
| 19 |
|
---|
| 20 | /*
|
---|
| 21 | ** Data
|
---|
| 22 | */
|
---|
| 23 |
|
---|
| 24 | QString UTCTime;
|
---|
| 25 | QDateTime Time;
|
---|
| 26 | double RMSvalue;
|
---|
| 27 | double ErrorEllipseMajor;
|
---|
| 28 | double ErrorEllipseMinor;
|
---|
| 29 | double ErrorEllipseOrientation;
|
---|
| 30 | double LatitudeError;
|
---|
| 31 | double LongitudeError;
|
---|
| 32 | double HeightError;
|
---|
| 33 |
|
---|
| 34 | /*
|
---|
| 35 | ** Methods
|
---|
| 36 | */
|
---|
| 37 |
|
---|
| 38 | virtual void Empty( void );
|
---|
| 39 | virtual BOOL Parse( const SENTENCE& sentence );
|
---|
| 40 | virtual BOOL Write( SENTENCE& sentence );
|
---|
| 41 |
|
---|
| 42 | /*
|
---|
| 43 | ** Operators
|
---|
| 44 | */
|
---|
| 45 |
|
---|
| 46 | virtual const GST& operator = ( const GST& source );
|
---|
| 47 | };
|
---|
| 48 |
|
---|
| 49 | #endif // GST_CLASS_HEADER
|
---|
Note:
See
TracBrowser
for help on using the repository browser.