OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
RadiometryUncertaintyRecord.h
Go to the documentation of this file.
1 //----------------------------------------------------------------------------
2 //
3 // "Copyright Centre National d'Etudes Spatiales"
4 //
5 // License: LGPL
6 //
7 // See LICENSE.txt file in the top level directory for more details.
8 //
9 //----------------------------------------------------------------------------
10 // $Id$
11 
12 #ifndef RadiometryUncertaintyRecord_h
13 #define RadiometryUncertaintyRecord_h
14 
15 #include<iostream>
17 
18 namespace ossimplugins
19 {
25 {
26 public:
31 
36 
41 
50 
55 
59  double get_db()
60  {
61  return _db;
62  };
66  double get_deg()
67  {
68  return _deg;
69  };
70 protected:
71 
75  double _db;
79  double _deg;
80 private:
81 
82 
83 };
84 }
85 #endif
friend std::ostream & operator<<(std::ostream &os, const RadiometryUncertaintyRecord &data)
This function writes the RadiometryUncertaintyRecord in a stream.
RadiometryUncertaintyRecord & operator=(const RadiometryUncertaintyRecord &rhs)
Copy operator.
std::basic_istream< char > istream
Base class for char input streams.
Definition: ossimIosFwd.h:20
friend std::istream & operator>>(std::istream &is, RadiometryUncertaintyRecord &data)
This function reads a RadiometryUncertaintyRecord from a stream.
This class is able to read a radiometry uncertainty record.
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23