UNCLASSIFIED
GeographicTranslator
Main Page
Namespaces
Classes
All
Classes
Namespaces
Functions
Enumerations
net
defender
users
ccadmin
MSP
BUILDS
MSP_1.2.0.12_UNCLASS
GEOTRANS
INSTALLER_take2
master
CCS
src
dtcc
CoordinateSystemParameters
LocalCartesianParameters.h
1
// CLASSIFICATION: UNCLASSIFIED
2
3
#ifndef LocalCartesianParameters_H
4
#define LocalCartesianParameters_H
5
6
#include "CoordinateSystemParameters.h"
7
#include "DtccApi.h"
8
9
10
11
namespace
MSP
12
{
13
namespace
CCS
14
{
15
class
MSP_DTCC_API
LocalCartesianParameters
:
public
CoordinateSystemParameters
16
{
17
public
:
18
19
LocalCartesianParameters
();
20
LocalCartesianParameters
( CoordinateType::Enum _coordinateType );
21
LocalCartesianParameters
( CoordinateType::Enum _coordinateType,
double
__longitude,
double
__latitude,
double
__height,
double
__orientation );
22
LocalCartesianParameters
(
const
LocalCartesianParameters
& lcp );
23
24
~
LocalCartesianParameters
();
25
26
LocalCartesianParameters
& operator=(
const
LocalCartesianParameters
&lcp );
27
28
void
setLongitude(
double
__centralMeridian );
29
void
setLatitude(
double
__originLatitude );
30
void
setHeight(
double
__height );
31
void
setOrientation(
double
__orientation );
32
33
double
longitude()
const
;
34
double
latitude()
const
;
35
double
height()
const
;
36
double
orientation()
const
;
37
38
private
:
39
40
double
_longitude;
41
double
_latitude;
42
double
_height;
43
double
_orientation;
44
45
};
46
}
47
}
48
49
#endif
50
51
52
// CLASSIFICATION: UNCLASSIFIED
Generated on Tue Oct 16 2012 13:48:10 for GeographicTranslator by doxygen 1.8.2