| Line | |
|---|
| 1 |
|
|---|
| 2 | #ifndef BNCRINEX_H
|
|---|
| 3 | #define BNCRINEX_H
|
|---|
| 4 |
|
|---|
| 5 | #include <QByteArray>
|
|---|
| 6 | #include <QList>
|
|---|
| 7 |
|
|---|
| 8 | #include <fstream>
|
|---|
| 9 |
|
|---|
| 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:
|
|---|
| 20 | void resolveFileName(struct converttimeinfo& cti);
|
|---|
| 21 | void readSkeleton();
|
|---|
| 22 | void writeHeader(struct converttimeinfo& cti, double second);
|
|---|
| 23 |
|
|---|
| 24 | QByteArray _statID;
|
|---|
| 25 | QByteArray _fName;
|
|---|
| 26 | QList<Observation*> _obs;
|
|---|
| 27 | ofstream _out;
|
|---|
| 28 | QStringList _headerLines;
|
|---|
| 29 | bool _headerWritten;
|
|---|
| 30 | };
|
|---|
| 31 |
|
|---|
| 32 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.