Changeset 3182 in ntrip for trunk/BNC/upload/bncuploadcaster.h


Ignore:
Timestamp:
Mar 29, 2011, 7:15:07 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/upload/bncuploadcaster.h

    r3179 r3182  
    33
    44#include <QtNetwork>
     5#include "bncephuser.h"
     6
     7class bncClockRinex;
     8class bncSP3;
    59
    610class bncUploadCaster : public QObject {
     
    1115                  const QString& password,
    1216                  const QString& crdTrafo, bool  CoM,
     17                  const QString& rnxFileName,
     18                  const QString& sp3FileName,
    1319                  const QString& outFileName);
    1420  virtual ~bncUploadCaster();
     
    1723  void printAscii(const QString& line);
    1824  bool usedSocket() const {return _outSocket;}
    19   QString crdTrafo() const {return _crdTrafo;}
    20   bool CoM() const {return _CoM;}
     25  void uploadClockOrbitBias(const QStringList& lines,
     26                            const QMap<QString, bncEphUser::t_ephPair*>& ephMap,
     27                            int year, int month, int day,
     28                            int GPSweek, double GPSweeks);
    2129
    2230 signals:
     
    2533
    2634 private:
     35  void processSatellite(t_eph* eph, int GPSweek,
     36                        double GPSweeks, const QString& prn,
     37                        const ColumnVector& xx,
     38                        struct ClockOrbit::SatData* sd,
     39                        QString& outLine);
     40  void crdTrafo(int GPSWeek, ColumnVector& xyz);
    2741  QString        _mountpoint;
    2842  QString        _outHost;
     
    3650  QFile*         _outFile;
    3751  QTextStream*   _outStream;
     52  bool           _append;
     53  double         _dx;
     54  double         _dy;
     55  double         _dz;
     56  double         _dxr;
     57  double         _dyr;
     58  double         _dzr;
     59  double         _ox;
     60  double         _oy;
     61  double         _oz;
     62  double         _oxr;
     63  double         _oyr;
     64  double         _ozr;
     65  double         _sc;
     66  double         _scr;
     67  double         _t0;
     68  bncClockRinex* _rnx;
     69  bncSP3*        _sp3;
    3870};
    3971
Note: See TracChangeset for help on using the changeset viewer.