UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
CartesianCoordinates.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef CartesianCoordinates_H
4 #define CartesianCoordinates_H
5 
6 #include "CoordinateTuple.h"
7 #include "DtccApi.h"
8 
9 
10 
11 namespace MSP
12 {
13  namespace CCS
14  {
16  {
17  public:
18 
20  CartesianCoordinates( CoordinateType::Enum _coordinateType );
21  CartesianCoordinates( CoordinateType::Enum _coordinateType, double __x, double __y, double __z );
22  CartesianCoordinates( CoordinateType::Enum _coordinateType, const char* __warningMessage, double __x, double __y, double __z );
24 
26 
27  CartesianCoordinates& operator=( const CartesianCoordinates &cc );
28 
29  void set( double __x, double __y, double __z );
30  void setX( double __x );
31  void setY( double __y );
32  void setZ( double __z );
33 
34  double x() const;
35  double y() const;
36  double z() const;
37 
38  private:
39 
40  double _x;
41  double _y;
42  double _z;
43 
44  };
45  }
46 }
47 
48 #endif
49 
50 
51 // CLASSIFICATION: UNCLASSIFIED