Initial release

This commit is contained in:
birkeh
2011-04-28 10:06:43 +02:00
commit 4b0fd01bea
28 changed files with 2262 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef CPOSITION_H
#define CPOSITION_H
class cPosition
{
public:
cPosition(const cPosition& rhs);
cPosition(double dLatitude = 0, double dLongitude = 0, double dElevation = 0);
double getLatitude();
double getLongitude();
double getElevation();
cPosition& operator=(const cPosition& rhs);
protected:
double m_dLatitude;
double m_dLongitude;
double m_dElevation;
};
#endif // CPOSITION_H