This commit is contained in:
Tim Schubert 2020-08-27 21:30:28 +02:00
parent 998b7fe2f2
commit d9a0dd6a71
4 changed files with 12 additions and 106 deletions

View file

@ -27,28 +27,12 @@ public:
virtual Vector GetNext (void) const;
virtual int64_t AssignStreams (int64_t stream);
double GetLatStart () const;
double GetLonStart () const;
double GetLatStop () const;
double GetLonStop () const;
private:
double m_latStart;
double m_lonStart;
double m_latStop;
double m_lonStop;
uint32_t m_latNum;
uint32_t m_lonNum;
mutable uint32_t m_lat;
mutable uint32_t m_lon;
void SetLatStart (double lat);
void SetLonStart (double lon);
void SetLatStop (double lat);
void SetLonStop (double lon);
};
};