UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
MapProjectionCoordinates.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef MapProjectionCoordinates_H
4 #define MapProjectionCoordinates_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 
21  MapProjectionCoordinates( CoordinateType::Enum _coordinateType, double __easting, double __northing );
22  MapProjectionCoordinates( CoordinateType::Enum _coordinateType, const char* __warningMessage, double __easting, double __northing );
24 
26 
28 
29  void set( double __easting, double __northing );
30 
31  void setEasting( double __easting );
32  double easting() const;
33 
34  void setNorthing( double __northing );
35  double northing() const;
36 
37 
38  private:
39 
40  double _easting;
41  double _northing;
42 
43  };
44  }
45 }
46 
47 #endif
48 
49 
50 // CLASSIFICATION: UNCLASSIFIED