Changeset 10533 in ntrip for trunk/BNC/src/GPSDecoder.h
- Timestamp:
- Sep 17, 2024, 4:55:28 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/GPSDecoder.h
r8235 r10533 27 27 28 28 #include <iostream> 29 #include <iomanip> 29 30 #include <vector> 30 31 #include <string> … … 35 36 #include "bnctime.h" 36 37 #include "satObs.h" 38 #include "crs.h" 37 39 38 40 class bncRinex; 41 using namespace std; 39 42 40 43 class GPSDecoder { … … 92 95 93 96 /** List of observations */ 94 QList<t_satObs> _obsList; 95 QList<int> _typeList; // RTCM message types 96 QList<t_antInfo> _antType; // RTCM antenna descriptor 97 QList<t_recInfo> _recType; // RTCM receiver descriptor 98 QList<t_antRefPoint> _antList; // RTCM antenna XYZ 99 QString _gloFrq; // GLONASS slot 100 bncRinex* _rnx; // RINEX writer 97 QList<t_satObs> _obsList; 98 QList<int> _typeList; // RTCM message types 99 QList<t_antInfo> _antType; // RTCM antenna descriptor 100 QList<t_recInfo> _recType; // RTCM receiver descriptor 101 QList<t_antRefPoint> _antList; // RTCM antenna XYZ 102 QList<t_helmertPar> _helmertPar; // List of Helmert parameter sets 103 QList<t_serviceCrs> _serviceCrs; // Service CRS 104 QList<t_rtcmCrs> _rtcmCrs; // RTCM CRS 105 QString _gloFrq; // GLONASS slot 106 bncRinex* _rnx; // RINEX writer 101 107 }; 102 108
Note:
See TracChangeset
for help on using the changeset viewer.