00001 #ifndef MeasurementError_H 00002 #define MeasurementError_H 00003 00008 class MeasurementError { 00009 public: 00010 00011 MeasurementError() : theuu(0), theuv(0), thevv(0) {} 00012 00013 MeasurementError( float uu, float uv, float vv) : 00014 theuu(uu), theuv(uv), thevv(vv) {} 00015 00016 float uu() const { return theuu;} 00017 float uv() const { return theuv;} 00018 float vv() const { return thevv;} 00019 00020 private: 00021 00022 float theuu; 00023 float theuv; 00024 float thevv; 00025 00026 }; 00027 00028 00029 #endif // MeasurementError_H