GPSData.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
19 #pragma once
20 
21 #include "StreamData.h"
22 #include "EdgeVisSDK.h"
23 
24 namespace EdgeVisDecoderSDK
25 {
26  class GPSDataImpl;
27  class GPSData : public StreamData
28  {
29  public:
30  DB_EDGEVIS_SDK GPSData();
31  GPSData(std::weak_ptr<GPSDataImpl> pimpl);
32  DB_EDGEVIS_SDK GPSData(StreamData data);
33 
34  DB_EDGEVIS_SDK virtual ~GPSData();
35 
36  void Latitude(double latitude);
37 
42  DB_EDGEVIS_SDK double Latitude() const;
43 
44  void Longitude(double longitude);
45 
50  DB_EDGEVIS_SDK double Longitude() const;
51  };
52 }
If the encoder has live GPS data it will return location information as part of the stream data...
Definition: GPSData.h:27
DB_EDGEVIS_SDK double Longitude() const
Gets the degrees of longitude part of the location.
This is the base class for the StreamData objects.
Definition: StreamData.h:27
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK double Latitude() const
Gets the degrees of latitude part of the location.