Changeset 3528 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Dec 16, 2011, 5:23:35 PM (13 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/RTCM/GPSDecoder.h ¶
r3342 r3528 33 33 34 34 #include "bncconst.h" 35 #include "bncrinex.h" 35 36 36 37 class t_obs { … … 119 120 class GPSDecoder { 120 121 public: 121 virtual t_irc Decode(char* buffer, int bufLen, std::vector<std::string>& errmsg) = 0;122 GPSDecoder(); 122 123 123 virtual ~GPSDecoder() {} 124 virtual ~GPSDecoder() {delete _rnx;} 125 126 virtual t_irc Decode(char* buffer, int bufLen, 127 std::vector<std::string>& errmsg) = 0; 128 124 129 125 130 virtual int corrGPSEpochTime() const {return -1;} 131 132 void dumpRinexEpoch(const t_obs& obs, const QByteArray& format); 133 134 void setRinexReconnectFlag(bool flag); 126 135 127 136 struct t_antInfo { … … 145 154 146 155 QList<t_obs> _obsList; 147 QList<int> _typeList; // RTCM message types 148 QStringList _antType; // RTCM antenna descriptor 149 QList<t_antInfo> _antList; // RTCM antenna XYZ 156 QList<int> _typeList; // RTCM message types 157 QStringList _antType; // RTCM antenna descriptor 158 QList<t_antInfo> _antList; // RTCM antenna XYZ 159 bncRinex* _rnx; // RINEX writer 150 160 }; 151 161
Note:
See TracChangeset
for help on using the changeset viewer.