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

Last change on this file since 5817 was 5817, checked in by mervart, 10 years ago
File size: 1.3 KB
Line 
1#ifndef PPPTHREAD_H
2#define PPPTHREAD_H
3
4#include <deque>
5#include <vector>
6#include <QtCore>
7
8#include "GPSDecoder.h"
9#include "pppOptions.h"
10#include "pppClient.h"
11
12namespace BNC_PPP {
13
14class t_pppRun : public QObject {
15 Q_OBJECT
16 public:
17 t_pppRun(const t_pppOptions* opt);
18 ~t_pppRun();
19
20 signals:
21 void newMessage(QByteArray msg, bool showOnScreen);
22
23 public slots:
24 void slotNewEphGPS(gpsephemeris gpseph);
25 void slotNewEphGlonass(glonassephemeris gloeph);
26 void slotNewEphGalileo(galileoephemeris galeph);
27 void slotNewCorrections(QStringList corrList);
28 void slotNewObs(QByteArray staID, QList<t_obs> obsList);
29
30 private:
31 class t_pppEpoData {
32 public:
33 t_pppEpoData() {}
34 ~t_pppEpoData() {
35 for (unsigned ii = 0; ii < _pppSatObs.size(); ii++) {
36 delete _pppSatObs[ii];
37 }
38 }
39 bncTime _time;
40 std::vector<t_pppSatObs*> _pppSatObs;
41 };
42
43 QMutex _mutex;
44 const t_pppOptions* _opt;
45 t_pppClient* _pppClient;
46 std::deque<t_pppEpoData*> _pppEpochs;
47};
48
49class t_pppThread : public QThread {
50 Q_OBJECT
51 public:
52 t_pppThread(const t_pppOptions* opt);
53 ~t_pppThread();
54 virtual void run();
55
56 signals:
57 void newMessage(QByteArray msg, bool showOnScreen);
58
59 private:
60 const t_pppOptions* _opt;
61 t_pppRun* _pppRun;
62};
63
64}
65
66#endif
Note: See TracBrowser for help on using the repository browser.