#include <string>
#include <vector>
#include "TblLookup.hpp"
Go to the source code of this file.
|
| namespace | SOSM_BinaryIO |
| | A collection of functions to assist in performing binary I/O for tables.
|
|
| void | SOSM_BinaryIO::ReadHeader (std::istream &aInput, std::string aUserIdent[3]) |
| void | SOSM_BinaryIO::WriteHeader (std::ostream &aOutput, const std::string aUserIdent[3]) |
| void | SOSM_BinaryIO::ReadSpectralObject (std::istream &aInput, SOSM_SpectralObject &aObject) |
| void | SOSM_BinaryIO::WriteSpectralObject (std::ostream &aOutput, const SOSM_SpectralObject &aObject) |
| void | SOSM_BinaryIO::ReadDV (std::istream &aInput, std::vector< float > &aDV) |
| void | SOSM_BinaryIO::WriteDV (std::ostream &aOutput, const std::vector< float > &aDV) |
| void | SOSM_BinaryIO::ReadIV (std::istream &aInput, TblIndVarU< float > &aIV) |
| void | SOSM_BinaryIO::WriteIV (std::ostream &aOutput, const TblIndVarU< float > &aIV) |
| void | SOSM_BinaryIO::ReadTrailer (std::istream &aInput) |
| void | SOSM_BinaryIO::WriteTrailer (std::ostream &aOutput) |
| void | SOSM_BinaryIO::ReadString (std::istream &aInput, std::string &aString) |
| void | SOSM_BinaryIO::WriteString (std::ostream &aOutput, const std::string &aString) |