UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
GeodeticCoordinates.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef GeodeticCoordinates_H
4 #define GeodeticCoordinates_H
5 
6 #include "CoordinateTuple.h"
7 #include "DtccApi.h"
8 
9 
10 
11 namespace MSP
12 {
13  namespace CCS
14  {
16  {
17  public:
18 
20  GeodeticCoordinates( CoordinateType::Enum _coordinateType );
21  GeodeticCoordinates( CoordinateType::Enum _coordinateType, double __longitude, double __latitude, double __height = 0 );
22  GeodeticCoordinates( CoordinateType::Enum _coordinateType, const char* __warningMessage, double __longitude, double __latitude, double __height = 0 );
24 
26 
27  GeodeticCoordinates& operator=( const GeodeticCoordinates &gc );
28 
29  void set( double __longitude, double __latitude, double __height = 0 );
30  void setLongitude( double __longitude );
31  void setLatitude( double __latitude );
32  void setHeight( double __height );
33 
34  double longitude() const;
35  double latitude() const;
36  double height() const;
37 
38  private:
39 
40  double _longitude;
41  double _latitude;
42  double _height;
43 
44  };
45  }
46 }
47 
48 #endif
49 
50 
51 // CLASSIFICATION: UNCLASSIFIED