UNCLASSIFIED

GeographicTranslator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
Accuracy.h
Go to the documentation of this file.
1 // CLASSIFICATION: UNCLASSIFIED
2 
3 #ifndef Accuracy_H
4 #define Accuracy_H
5 
6 #include "DtccApi.h"
7 
8 
9 namespace MSP
10 {
11  namespace CCS
12  {
14  {
15  public:
16 
17  Accuracy();
18  Accuracy( double __circularError90, double __linearError90, double __sphericalError90 );
19  Accuracy( const Accuracy &a );
20 
21  ~Accuracy( void );
22 
23  Accuracy& operator=( const Accuracy &a );
24 
25  void set( double __circularError90, double __linearError90, double __sphericalError90 );
26 
27  void setCircularError90( double __circularError90 );
28  void setLinearError90( double __linearError90 );
29  void setSphericalError90( double __sphericalError90 );
30 
31  double circularError90();
32  double linearError90();
33  double sphericalError90();
34 
35  private:
36 
37  double _circularError90;
38  double _linearError90;
39  double _sphericalError90;
40 
41  };
42  }
43 }
44 
45 #endif
46 
47 
48 // CLASSIFICATION: UNCLASSIFIED