Line | |
---|
1 | #ifndef DLLINTERFACE_H
|
---|
2 | #define DLLINTERFACE_H
|
---|
3 |
|
---|
4 | #include <vector>
|
---|
5 |
|
---|
6 | #include "RTCM/GPSDecoder.h"
|
---|
7 | #include "bncephuser.h"
|
---|
8 |
|
---|
9 | class 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.