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

Last change on this file since 5719 was 5719, checked in by mervart, 10 years ago
File size: 603 bytes
Line 
1#ifndef PPPTHREAD_H
2#define PPPTHREAD_H
3
4#include <vector>
5#include <QtCore>
6
7#include "RTCM/GPSDecoder.h"
8#include "options.h"
9
10namespace BNC {
11
12class t_pppThread : public QThread {
13 Q_OBJECT
14
15 public:
16 t_pppThread(QSharedPointer<t_options> opt);
17 ~t_pppThread();
18 virtual void run();
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);
25 void slotNewObs(QByteArray staID, QList<t_obs> obsList);
26
27 private:
28 QMutex _mutex;
29};
30
31}
32
33#endif
Note: See TracBrowser for help on using the repository browser.