source: ntrip/trunk/BNC/src/bncsinextro.h@ 6653

Last change on this file since 6653 was 6653, checked in by stuerze, 9 years ago

sinex tro file support added,
troposphere results in overall ppp logfile added

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 695 bytes
Line 
1#ifndef BNCSINEXTRO_H
2#define BNCSINEXTRO_H
3
4
5#include <fstream>
6#include <newmat.h>
7#include <QtCore>
8
9#include "bncoutf.h"
10#include "bncversion.h"
11#include "pppOptions.h"
12
13using namespace BNC_PPP;
14
15class bncSinexTro : public bncoutf {
16 public:
17 bncSinexTro(const t_pppOptions* opt,
18 const QString& sklFileName, const QString& intr,
19 int sampl);
20 virtual ~bncSinexTro();
21 virtual t_irc write(QByteArray staID, int GPSWeek, double GPSWeeks,
22 double trotot, double stdev);
23
24 private:
25 virtual void writeHeader(const QDateTime& datTim);
26 virtual void closeFile();
27 QString _roverName;
28 int _sampl;
29 const t_pppOptions* _opt;
30};
31
32
33#endif
Note: See TracBrowser for help on using the repository browser.