source:
ntrip/trunk/BNC/src/PPP/pppThread.h@
5720
| Last change on this file since 5720 was 5720, checked in by , 12 years ago | |
|---|---|
| File size: 601 bytes | |
| Rev | Line | |
|---|---|---|
| [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] | 10 | namespace BNC { |
| 11 | ||
| [5680] | 12 | class t_pppThread : public QThread { |
| [4757] | 13 | Q_OBJECT |
| 14 | ||
| 15 | public: | |
| [5720] | 16 | t_pppThread(QWeakPointer<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.
