Rev | Line | |
---|
[73] | 1 |
|
---|
| 2 | #ifndef BNCRINEX_H
|
---|
| 3 | #define BNCRINEX_H
|
---|
| 4 |
|
---|
[74] | 5 | #include <QByteArray>
|
---|
[73] | 6 | #include <QList>
|
---|
| 7 |
|
---|
[77] | 8 | #include <fstream>
|
---|
| 9 |
|
---|
[73] | 10 | #include "RTCM/GPSDecoder.h"
|
---|
| 11 |
|
---|
| 12 | class bncRinex {
|
---|
| 13 | public:
|
---|
| 14 | bncRinex(const char* StatID);
|
---|
| 15 | ~bncRinex();
|
---|
| 16 | void deepCopy(const Observation* obs);
|
---|
| 17 | void dumpEpoch();
|
---|
| 18 |
|
---|
| 19 | private:
|
---|
[82] | 20 | void resolveFileName(struct converttimeinfo& cti);
|
---|
| 21 | void readSkeleton();
|
---|
[78] | 22 | void writeHeader(struct converttimeinfo& cti, double second);
|
---|
[77] | 23 |
|
---|
[74] | 24 | QByteArray _statID;
|
---|
[82] | 25 | QByteArray _fName;
|
---|
[73] | 26 | QList<Observation*> _obs;
|
---|
[77] | 27 | ofstream _out;
|
---|
[82] | 28 | QStringList _headerLines;
|
---|
[77] | 29 | bool _headerWritten;
|
---|
[73] | 30 | };
|
---|
| 31 |
|
---|
| 32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.