OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
SRGRCoefficientSetRecord.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 SRGRCoefficientSetRecord_h
13 #define SRGRCoefficientSetRecord_h
14 
15 #include <iostream>
17 
18 namespace ossimplugins
19 {
25 {
26 public:
31 
36 
41 
46 
51 
56 
60  std::string get_srgr_update()
61  {
62  return _srgr_update;
63  }
64 
68  double* get_srgr_coef()
69  {
70  return _srgr_coef;
71  }
72 
73 protected:
77  std::string _srgr_update;
78 
82  double _srgr_coef[6];
83 private:
84 
85 };
86 }
87 #endif
This class is able to read a SRGR coefficients set record.
std::string get_srgr_update()
SRGR update date/time.
std::string _srgr_update
SRGR update date/time.
double * get_srgr_coef()
SRGR coefficients
friend std::ostream & operator<<(std::ostream &os, const SRGRCoefficientSetRecord &data)
This function writes the SRGRCoefficientSetRecord in a stream.
SRGRCoefficientSetRecord & operator=(const SRGRCoefficientSetRecord &rhs)
Copy operator.
friend std::istream & operator>>(std::istream &is, SRGRCoefficientSetRecord &data)
This function reads a SRGRCoefficientSetRecord from a stream.
std::basic_istream< char > istream
Base class for char input streams.
Definition: ossimIosFwd.h:20
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23