source: pacpussensors/trunk/NMEA0183/include/TIME__.hpp@ 59

Last change on this file since 59 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: 723 bytes
Line 
1#if ! defined( TIME__CLASS_HEADER )
2
3#define TIME__CLASS_HEADER
4
5#include "qstring.h"
6#include "NMEA0183_slim.h"
7#include "Sentence.hpp"
8#include "Response.hpp"
9
10class TIME_ : public RESPONSE
11{
12 public:
13
14 TIME_();
15 virtual ~TIME_();
16
17 /*
18 ** Data
19 */
20
21 QString UTCTime;
22 QDateTime Time;
23
24 /*
25 ** Methods
26 */
27
28 virtual void Empty( void );
29 virtual QString PlainEnglish( void ) const;
30 virtual BOOL Parse( const SENTENCE& sentence );
31 virtual BOOL Write( SENTENCE& sentence );
32
33 /*
34 ** Operators
35 */
36
37 virtual const TIME_& operator = ( const TIME_& source );
38};
39
40#endif // TIME__CLASS_HEADER
Note: See TracBrowser for help on using the repository browser.