source: ntrip/branches/BNC_2.12/src/bncsinextro.h@ 8052

Last change on this file since 8052 was 7521, checked in by stuerze, 8 years ago

minor changes to allow sinex troposphere file writing in version 2.0

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 794 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#include "bncsettings.h"
13#include "bncantex.h"
14
15using namespace BNC_PPP;
16
17class bncSinexTro : public bncoutf {
18 public:
19 bncSinexTro(const t_pppOptions* opt,
20 const QString& sklFileName, const QString& intr,
21 int sampl);
22 virtual ~bncSinexTro();
23 virtual t_irc write(QByteArray staID, int GPSWeek, double GPSWeeks,
24 double trotot, double stdev);
25
26 private:
27 virtual void writeHeader(const QDateTime& datTim);
28 virtual void closeFile();
29 QString _roverName;
30 int _sampl;
31 const t_pppOptions* _opt;
32 bncAntex* _antex;
33 double _antPCO[t_frequency::max];
34};
35
36
37#endif
Note: See TracBrowser for help on using the repository browser.