source: pacpusframework/branches/2.0-beta1/include/extlib/NMEA0183/GST.hpp@ 89

Last change on this file since 89 was 89, checked in by morasjul, 11 years ago

PACPUS 2.0 Beta deployed in new branch

Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support

  • Property svn:executable set to *
File size: 831 bytes
Line 
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
13class GST : public RESPONSE
14{
15public:
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.