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

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

* empty log message *

File size: 485 bytes
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
12class bncRinex {
13 public:
14 bncRinex(const char* StatID);
15 ~bncRinex();
16 void deepCopy(const Observation* obs);
17 void dumpEpoch();
18
19 private:
20 void writeHeader(struct converttimeinfo& cti, double second);
21
22 QByteArray _statID;
23 QList<Observation*> _obs;
24 ofstream _out;
25 bool _headerWritten;
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.