source: ntrip/trunk/BNC/bncrinex.h@ 125

Last change on this file since 125 was 125, checked in by mervart, 18 years ago

* empty log message *

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