3 #ifndef UTMCoordinates_H
4 #define UTMCoordinates_H
6 #include "CoordinateTuple.h"
21 UTMCoordinates( CoordinateType::Enum _coordinateType,
long __zone,
char __hemisphere,
double __easting,
double __northing );
22 UTMCoordinates( CoordinateType::Enum _coordinateType,
const char* __warningMessage,
long __zone,
char __hemisphere,
double __easting,
double __northing );
29 void set(
long __zone,
char __hemisphere,
double __easting,
double __northing );
31 void setZone(
long __zone );
33 void setHemisphere(
char __hemisphere );
34 char hemisphere()
const;
35 void setEasting(
double __easting );
36 double easting()
const;
37 void setNorthing(
double __northing );
38 double northing()
const;