UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Functions Enumerations
Precision.h
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef Precision_H
4 #define Precision_H
5 
6 
7 namespace MSP
8 {
9  namespace CCS
10  {
11  class Precision
12  {
13  public:
14 
15  enum Enum
16  {
17  degree,
18  tenMinute,
19  minute,
20  tenSecond,
21  second,
22  tenthOfSecond,
23  hundrethOfSecond,
24  thousandthOfSecond,
25  tenThousandthOfSecond
26  };
27  };
28  }
29 }
30 
31 #endif
32 
33 
34 // CLASSIFICATION: UNCLASSIFIED