UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
GeodeticParameters.cpp
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #include "stdio.h"
4 #include "GeodeticParameters.h"
5 
6 
7 using namespace MSP::CCS;
8 
9 
12  _heightType( HeightType::noHeight )
13 {
14 }
15 
16 
18  CoordinateSystemParameters( _coordinateType ),
19  _heightType( HeightType::noHeight )
20 {
21 }
22 
23 
25  CoordinateSystemParameters( _coordinateType ),
26  _heightType( __heightType )
27 {
28 }
29 
30 
32 {
34 
35  _heightType = gp._heightType;
36 }
37 
38 
40 {
41 }
42 
43 
45 {
46  if( this != &gp )
47  {
49 
50  _heightType = gp._heightType;
51  }
52 
53  return *this;
54 }
55 
56 
58 {
59  _heightType = __heightType;
60 }
61 
62 
64 {
65  return _heightType;
66 }
67 
68 
69 
70 // CLASSIFICATION: UNCLASSIFIED