source: ntrip/trunk/BNC/src/bncclockrinex.h@ 10659

Last change on this file since 10659 was 10650, checked in by stuerze, 3 months ago

minor changes

File size: 637 bytes
Line 
1#ifndef BNCCLOCKRINEX_H
2#define BNCCLOCKRINEX_H
3
4#include <fstream>
5#include <newmat.h>
6#include <QtCore>
7#include <sstream>
8
9#include "bncoutf.h"
10
11class bncClockRinex : public bncoutf {
12 public:
13 bncClockRinex(const QString& sklFileName, const QString& intr, int sampl);
14 virtual ~bncClockRinex();
15 virtual t_irc write(int GPSweek, double GPSweeks, const QString& prn,
16 double clkRnx, double clkRnxRate, double clkRnxAcc,
17 double clkRnxSig, double clkRnxRateSig, double clkRnxAccSig);
18
19 private:
20 virtual void writeHeader(const QDateTime& datTim);
21 std::ostringstream _oStr;
22 bncTime _lastEpoTime;
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.