source: ntrip/trunk/BNC/src/bncoutf.h@ 9440

Last change on this file since 9440 was 9158, checked in by stuerze, 4 years ago

the default RINEX version in BNC is changed from version 2 to verision 3

File size: 870 bytes
Line 
1#ifndef BNCOUTF_H
2#define BNCOUTF_H
3
4#include <fstream>
5#include <newmat.h>
6#include <QtCore>
7
8#include "bncutils.h"
9
10class bncoutf {
11 public:
12 bncoutf(const QString& sklFileName, const QString& intr, int sampl);
13 virtual ~bncoutf();
14 t_irc write(int GPSweek, double GPSweeks, const QString& str);
15
16 protected:
17 virtual t_irc reopen(int GPSweek, double GPSweeks);
18 virtual void writeHeader(const QDateTime& /* datTim */) {}
19 virtual void closeFile();
20 std::ofstream _out;
21 int _sampl;
22 int _numSec;
23
24 private:
25 QString epochStr(const QDateTime& datTim, const QString& intStr,
26 int sampl);
27 QString resolveFileName(int GPSweek, const QDateTime& datTim);
28
29 bool _headerWritten;
30 QString _path;
31 QString _sklBaseName;
32 QString _extension;
33 QString _intr;
34 QString _fName;
35 bool _append;
36 bool _v2filenames;
37};
38
39#endif
Note: See TracBrowser for help on using the repository browser.