Changeset 4784 in ntrip for trunk/BNC/src/bncephuser.h


Ignore:
Timestamp:
Oct 27, 2012, 12:26:02 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.h

    r4772 r4784  
    8787};
    8888
     89class t_bias {
     90 public:
     91  t_bias() {}
     92  ~t_bias() {}
     93  t_irc readLine(const QString& line);
     94  double value(const QByteArray& rnxStr) const {
     95    if (_value.contains(rnxStr)) {
     96      return _value[rnxStr];
     97    }
     98    else {
     99      return 0.0;
     100    }
     101  }
     102  QString                  _prn;
     103  bncTime                  _time;
     104  QMap<QByteArray, double> _value;
     105};
     106
    89107class bncEphUser : public QObject {
    90108 Q_OBJECT
Note: See TracChangeset for help on using the changeset viewer.