source: pacpusframework/branches/2.0-beta1/src/TestComponents/CPT/NMEA0183/include/STDPOS.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: 768 bytes
Line 
1#if ! defined( STDPOS_CLASS_HEADER )
2
3#define STDPOS_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 STDPOS : public RESPONSE
12{
13 public:
14
15 STDPOS();
16 virtual ~STDPOS();
17
18 /*
19 ** Data
20 */
21
22 double stdLat;
23 double stdLong;
24 double stdAlt;
25
26 /*
27 ** Methods
28 */
29
30 virtual void Empty( void );
31 virtual QString PlainEnglish( void ) const;
32 virtual BOOL Parse( const SENTENCE& sentence );
33 virtual BOOL Write( SENTENCE& sentence );
34
35 /*
36 ** Operators
37 */
38
39 virtual const STDPOS& operator = ( const STDPOS& source );
40};
41
42#endif // STDPOS_CLASS_HEADER
Note: See TracBrowser for help on using the repository browser.