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

Last change on this file since 5730 was 5723, checked in by mervart, 10 years ago
File size: 615 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:
[5723]28 QMutex _mutex;
29 t_options _opt;
[4757]30};
31
[5719]32}
33
[4757]34#endif
Note: See TracBrowser for help on using the repository browser.