UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
GeodeticParameters.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef GeodeticParameters_H
4 #define GeodeticParameters_H
5 
7 #include "HeightType.h"
8 #include "DtccApi.h"
9 
10 
11 
12 namespace MSP
13 {
14  namespace CCS
15  {
17  {
18  public:
19 
21  GeodeticParameters( CoordinateType::Enum _coordinateType );
22  GeodeticParameters( CoordinateType::Enum _coordinateType, HeightType::Enum __heightType );
24 
26 
27  GeodeticParameters& operator=( const GeodeticParameters &gp );
28 
29  void setHeightType( HeightType::Enum __heightType );
30 
31  HeightType::Enum heightType() const;
32 
33  private:
34 
35  HeightType::Enum _heightType;
36 
37  };
38  }
39 }
40 
41 #endif
42 
43 
44 // CLASSIFICATION: UNCLASSIFIED