OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
TemperatureSettingsRecord.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 TemperatureSettingsRecord_h
13 #define TemperatureSettingsRecord_h
14 
15 #include <iostream>
17 
18 namespace ossimplugins
19 {
25 {
26 public:
31 
36 
41 
46 
51 
56 
60  int* get_temp_set()
61  {
62  return _temp_set;
63  };
64 
65 protected:
66 
70  int _temp_set[4];
71 private:
72 
73 };
74 }
75 #endif
friend std::ostream & operator<<(std::ostream &os, const TemperatureSettingsRecord &data)
This function writes the TemperatureSettingsRecord in a stream.
TemperatureSettingsRecord & operator=(const TemperatureSettingsRecord &rhs)
Copy operator.
This class is able to read a Temperature Settings record.
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
friend std::istream & operator>>(std::istream &is, TemperatureSettingsRecord &data)
This function reads a TemperatureSettingsRecord from a stream.