source: ntrip/trunk/BNC/src/RTRover/bncrtrover.h@ 4757

Last change on this file since 4757 was 4757, checked in by mervart, 12 years ago
File size: 623 bytes
Line 
1#ifndef DLLINTERFACE_H
2#define DLLINTERFACE_H
3
4#include <vector>
5
6#include "RTCM/GPSDecoder.h"
7#include "bncephuser.h"
8
9class t_dllInterface : QObject {
10 Q_OBJECT
11
12 public:
13 t_dllInterface();
14 ~t_dllInterface();
15 void putNewObs(const t_obs& pp);
16
17 public slots:
18 void slotNewEphGPS(gpsephemeris gpseph);
19 void slotNewEphGlonass(glonassephemeris gloeph);
20 void slotNewEphGalileo(galileoephemeris galeph);
21 void slotNewCorrections(QList<QString> corrList);
22
23 private:
24 QMutex _mutex;
25 QString _pppCorrMount;
26 QMap<QString, t_corr*> _corr;
27 std::vector<t_obs> _epoch;
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.