source: ntrip/trunk/BNC/src/PPP/pppThread.h@ 5721

Last change on this file since 5721 was 5721, checked in by mervart, 10 years ago
File size: 594 bytes
RevLine 
[5680]1#ifndef PPPTHREAD_H
2#define PPPTHREAD_H
[4757]3
4#include <vector>
[5719]5#include <QtCore>
[4757]6
7#include "RTCM/GPSDecoder.h"
[5719]8#include "options.h"
[4757]9
[5719]10namespace BNC {
11
[5680]12class t_pppThread : public QThread {
[4757]13 Q_OBJECT
14
15 public:
[5721]16 t_pppThread(const t_options* opt);
[5680]17 ~t_pppThread();
[4763]18 virtual void run();
[4757]19
20 public slots:
21 void slotNewEphGPS(gpsephemeris gpseph);
22 void slotNewEphGlonass(glonassephemeris gloeph);
23 void slotNewEphGalileo(galileoephemeris galeph);
24 void slotNewCorrections(QList<QString> corrList);
[5525]25 void slotNewObs(QByteArray staID, QList<t_obs> obsList);
[4757]26
27 private:
[5719]28 QMutex _mutex;
[4757]29};
30
[5719]31}
32
[4757]33#endif
Note: See TracBrowser for help on using the repository browser.