This class performs file i/o on a RINEX clock file for the RinexClockHeader and RinexClockData classes.
Definition at line 62 of file RinexClockStream.hpp.
#include <RinexClockStream.hpp>

Public Member Functions | |
| virtual void | open (const char *fn, std::ios::openmode mode) |
| virtual void | open (const std::string &fn, std::ios::openmode mode) |
| RinexClockStream () | |
| Default constructor. More... | |
| RinexClockStream (const char *fn, std::ios::openmode mode=std::ios::in) | |
| RinexClockStream (const std::string &fn, std::ios::openmode mode=std::ios::in) | |
| virtual | ~RinexClockStream () |
| Destructor. More... | |
Public Member Functions inherited from gnsstk::FFTextStream | |
| 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 | ~FFTextStream () |
| Destructor. More... | |
Public Member Functions inherited from gnsstk::FFStream | |
| 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 | |
| RinexClockHeader | header |
| The header for this file. More... | |
| bool | headerRead |
| Whether or not the RinexClockHeader has been read. More... | |
Public Attributes inherited from gnsstk::FFTextStream | |
| unsigned int | lineNumber |
Public Attributes inherited from gnsstk::FFStream | |
| 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... | |
Private Member Functions | |
| void | init () |
| Initialize internal data structures. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from gnsstk::FFStream | |
| static bool | isFFStream (std::istream &i) |
| Check if the input stream is the kind of RinexObsStream. More... | |
Protected Member Functions inherited from gnsstk::FFTextStream | |
| virtual void | tryFFStreamGet (FFData &rec) |
| virtual void | tryFFStreamPut (const FFData &rec) |
| gnsstk::RinexClockStream::RinexClockStream | ( | ) |
Default constructor.
Definition at line 49 of file RinexClockStream.cpp.
| gnsstk::RinexClockStream::RinexClockStream | ( | const char * | fn, |
| std::ios::openmode | mode = std::ios::in |
||
| ) |
Common constructor.
| fn | the RINEX clock data file to open |
| mode | how to open fn. |
Definition at line 56 of file RinexClockStream.cpp.
| gnsstk::RinexClockStream::RinexClockStream | ( | const std::string & | fn, |
| std::ios::openmode | mode = std::ios::in |
||
| ) |
Common constructor.
| fn | the RINEX clock data file to open |
| mode | how to open fn. |
Definition at line 65 of file RinexClockStream.cpp.
|
virtual |
Destructor.
Definition at line 74 of file RinexClockStream.cpp.
|
private |
Initialize internal data structures.
Definition at line 96 of file RinexClockStream.cpp.
|
virtual |
Overrides open to reset the header
| fn | the RINEX clock data file to open |
| mode | how to open fn. |
Reimplemented from gnsstk::FFTextStream.
Definition at line 80 of file RinexClockStream.cpp.
|
virtual |
Overrides open to reset the header
| fn | the RINEX clock data file to open |
| mode | how to open fn. |
Reimplemented from gnsstk::FFTextStream.
Definition at line 89 of file RinexClockStream.cpp.
| RinexClockHeader gnsstk::RinexClockStream::header |
The header for this file.
Definition at line 107 of file RinexClockStream.hpp.
| bool gnsstk::RinexClockStream::headerRead |
Whether or not the RinexClockHeader has been read.
Definition at line 104 of file RinexClockStream.hpp.