UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Functions Enumerations
GeodeticParameters.h
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef GeodeticParameters_H
4 #define GeodeticParameters_H
5 
6 #include "CoordinateSystemParameters.h"
7 #include "HeightType.h"
8 #include "DtccApi.h"
9 
10 
11 
12 namespace MSP
13 {
14  namespace CCS
15  {
16  class MSP_DTCC_API GeodeticParameters : public CoordinateSystemParameters
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