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

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

* empty log message *

File size: 331 bytes
Line 
1
2#ifndef BNCRINEX_H
3#define BNCRINEX_H
4
5#include <QByteArray>
6#include <QList>
7
8#include "RTCM/GPSDecoder.h"
9
10class bncRinex {
11 public:
12 bncRinex(const char* StatID);
13 ~bncRinex();
14 void deepCopy(const Observation* obs);
15 void dumpEpoch();
16
17 private:
18 QByteArray _statID;
19 QList<Observation*> _obs;
20};
21
22#endif
Note: See TracBrowser for help on using the repository browser.