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

Last change on this file since 10651 was 10650, checked in by stuerze, 10 days ago

minor changes

File size: 637 bytes
RevLine 
[3175]1#ifndef BNCCLOCKRINEX_H
2#define BNCCLOCKRINEX_H
3
4#include <fstream>
5#include <newmat.h>
[8483]6#include <QtCore>
[10650]7#include <sstream>
[3175]8
9#include "bncoutf.h"
10
11class bncClockRinex : public bncoutf {
12 public:
[3184]13 bncClockRinex(const QString& sklFileName, const QString& intr, int sampl);
[3175]14 virtual ~bncClockRinex();
[8483]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);
[3175]18
19 private:
20 virtual void writeHeader(const QDateTime& datTim);
[10608]21 std::ostringstream _oStr;
22 bncTime _lastEpoTime;
[3175]23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.