UNCLASSIFIED
GeographicTranslator
Main Page
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Friends
Macros
master
geotrans3.7
CCS
src
dtcc
CoordinateSystemParameters
CoordinateSystemParameters.cpp
Go to the documentation of this file.
1
// CLASSIFICATION: UNCLASSIFIED
2
3
#include "
CoordinateSystemParameters.h
"
4
#include "
CoordinateType.h
"
5
6
7
using namespace
MSP::CCS;
8
9
10
CoordinateSystemParameters::CoordinateSystemParameters
() :
11
_coordinateType(
CoordinateType
::geodetic )
12
{
13
}
14
15
CoordinateSystemParameters::CoordinateSystemParameters
(
MSP::CCS::CoordinateType::Enum
__coordinateType ) :
16
_coordinateType( __coordinateType )
17
{
18
}
19
20
21
CoordinateSystemParameters::CoordinateSystemParameters
(
const
CoordinateSystemParameters
&csp )
22
{
23
_coordinateType
= csp.
_coordinateType
;
24
}
25
26
27
CoordinateSystemParameters::~CoordinateSystemParameters
()
28
{
29
}
30
31
32
CoordinateSystemParameters
&
CoordinateSystemParameters::operator=
(
const
CoordinateSystemParameters
&csp )
33
{
34
if
(
this
!= &csp )
35
{
36
_coordinateType
= csp.
_coordinateType
;
37
}
38
39
return
*
this
;
40
}
41
42
43
void
CoordinateSystemParameters::setCoordinateType
(
MSP::CCS::CoordinateType::Enum
__coordinateType )
44
{
45
_coordinateType
= __coordinateType;
46
}
47
48
49
CoordinateType::Enum
CoordinateSystemParameters::coordinateType
()
const
50
{
51
return
_coordinateType
;
52
}
53
54
// CLASSIFICATION: UNCLASSIFIED
Generated on Tue Feb 16 2016 14:54:01 for GeographicTranslator by doxygen 1.8.2