This class reads an Antex files.
Definition at line 57 of file AntexStream.hpp.
#include <AntexStream.hpp>
Public Member Functions | |
AntexStream () | |
Default constructor. More... | |
AntexStream (const char *fn, std::ios::openmode mode=std::ios::in) | |
virtual void | open (const char *fn, std::ios::openmode mode) |
overrides open to reset the header More... | |
virtual | ~AntexStream () |
Destructor. 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 | |
AntexHeader | header |
The header for this file. More... | |
bool | headerRead |
Whether or not the AntexHeader 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 61 of file AntexStream.hpp.
|
inline |
Constructor given a file name
fn | the Antex file to open |
mode | how to open fn. |
Definition at line 68 of file AntexStream.hpp.
|
inlinevirtual |
Destructor.
Definition at line 74 of file AntexStream.hpp.
|
inlinevirtual |
overrides open to reset the header
Reimplemented from gnsstk::FFTextStream.
Definition at line 77 of file AntexStream.hpp.
AntexHeader gnsstk::AntexStream::header |
The header for this file.
Definition at line 88 of file AntexStream.hpp.
bool gnsstk::AntexStream::headerRead |
Whether or not the AntexHeader has been read.
Definition at line 85 of file AntexStream.hpp.