Ignore:
Timestamp:
Sep 7, 2014, 9:58:10 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP_free/bncpppclient.h

    r6055 r6065  
    117117
    118118class bncPPPclient : public bncEphUser {
    119  Q_OBJECT
     119 public:
     120  bncPPPclient(QByteArray staID, t_pppOptions* opt);
     121  ~bncPPPclient();
     122  void                putNewObs(const t_obs& pp);
     123  void                putNewCorrections(QList<QString> corrList);
    120124
    121  public:
    122   bncPPPclient(QByteArray staID, t_pppOptions* opt = 0, bool connectSlots = true);
    123   ~bncPPPclient();
    124   void putNewObs(const t_obs& pp);
    125   static t_irc applyCorr(const bncTime& tt, const t_corr* cc, ColumnVector& xc,
    126                          ColumnVector& vv);
    127   QByteArray staID() const {return _staID;}
     125  QByteArray          staID() const {return _staID;}
    128126  const t_pppOptions* opt() const {return _opt;}
    129   void emitNewMessage(QByteArray msg, bool showOnScreen) {
    130     emit newMessage(msg, showOnScreen);
    131   }
    132   void emitNewNMEAstr(QByteArray str) {
    133     emit newNMEAstr(str);
    134   }
    135127
    136  public slots:
    137   void slotNewCorrections(QList<QString> corrList);
    138   void slotProviderIDChanged(QString mountPoint);
     128  static t_irc applyCorr(const bncTime& tt, const t_corr* cc, ColumnVector& xc, ColumnVector& vv);
    139129
    140  signals:
    141   void newMessage(QByteArray msg, bool showOnScreen);
    142   void newPosition(bncTime time, double x, double y, double z);
    143   void newNMEAstr(QByteArray str);
    144130
    145131 private:
     
    163149  t_irc cmpToT(t_satData* satData);
    164150
    165   t_pppOptions*           _opt;
    166   bool                    _optOwner;
     151  const t_pppOptions*     _opt;
    167152  QByteArray              _staID;
    168153  QMap<QString, t_corr*>  _corr;
Note: See TracChangeset for help on using the changeset viewer.