This class performs file i/o on a Yuma file for the YumaHeader and YumaData classes.
Definition at line 65 of file YumaStream.hpp.
#include <YumaStream.hpp>
Public Member Functions | |
virtual void | open (const char *fn, std::ios::openmode mode) |
overrides open to reset the header More... | |
YumaStream () | |
Default constructor. More... | |
YumaStream (const char *fn, std::ios::openmode mode=std::ios::in) | |
virtual | ~YumaStream () |
destructor per the coding standards More... | |
![]() | |
FFTextStream () | |
Default constructor. More... | |
FFTextStream (const char *fn, std::ios::openmode mode=std::ios::in) | |
FFTextStream (const std::string &fn, std::ios::openmode mode=std::ios::in) | |
void | formattedGetLine (std::string &line, const bool expectEOF=false) |
virtual void | open (const std::string &fn, std::ios::openmode mode) |
Overrides open to reset the line number. More... | |
virtual | ~FFTextStream () |
Destructor. More... | |
![]() | |
void | conditionalThrow (void) |
void | dumpState (std::ostream &s=std::cout) const |
A function to help debug FFStreams. More... | |
FFStream () | |
Default constructor, initialize internal data. More... | |
FFStream (const char *fn, std::ios::openmode mode=std::ios::in) | |
FFStream (const std::string &fn, std::ios::openmode mode=std::ios::in) | |
virtual | ~FFStream () |
Virtual destructor, close the stream etc. More... | |
Public Attributes | |
YumaHeader | header |
YumaHeader for this file. More... | |
bool | headerRead |
Flag showing whether or not the header has been read. More... | |
![]() | |
unsigned int | lineNumber |
![]() | |
std::string | filename |
file name More... | |
FFStreamError | mostRecentException |
This stores the most recently thrown exception. More... | |
unsigned int | recordNumber |
keeps track of the number of records read More... | |
Additional Inherited Members | |
![]() | |
static bool | isFFStream (std::istream &i) |
Check if the input stream is the kind of RinexObsStream. More... | |
![]() | |
virtual void | tryFFStreamGet (FFData &rec) |
virtual void | tryFFStreamPut (const FFData &rec) |
|
inline |
Default constructor.
Definition at line 69 of file YumaStream.hpp.
|
inline |
Constructor
fn | the name of the ascuu FIC file to be opened |
mode | the ios::openmode to be used on fn |
Definition at line 76 of file YumaStream.hpp.
|
inlinevirtual |
destructor per the coding standards
Definition at line 81 of file YumaStream.hpp.
|
inlinevirtual |
overrides open to reset the header
Reimplemented from gnsstk::FFTextStream.
Definition at line 84 of file YumaStream.hpp.
YumaHeader gnsstk::YumaStream::header |
YumaHeader for this file.
Definition at line 91 of file YumaStream.hpp.
bool gnsstk::YumaStream::headerRead |
Flag showing whether or not the header has been read.
Definition at line 94 of file YumaStream.hpp.