- Timestamp:
- Dec 4, 2023, 10:59:30 PM (12 months ago)
- Location:
- tags/BNC_2.13.0/src/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/BNC_2.13.0/src/combination/bncbiassnx.cpp
r10227 r10273 119 119 else if (line.indexOf("BIAS_MODE") == 1) { 120 120 if (line.contains("ABSOLUTE")) { 121 _type = ABS OLUTE;121 _type = ABS; 122 122 } 123 123 else if (line.contains("RELATIVE")) { 124 _type = REL ATIVE;124 _type = REL; 125 125 } 126 126 } … … 176 176 inFile.close(); 177 177 178 if (_type == ABS OLUTE) {178 if (_type == ABS) { 179 179 getDsbFromOsb(); 180 180 } -
tags/BNC_2.13.0/src/combination/bncbiassnx.h
r10216 r10273 40 40 #include "t_prn.h" 41 41 42 43 44 45 46 42 class snxSatCodeBias { 47 43 public: … … 65 61 66 62 private: 67 enum e_type {ABS OLUTE, RELATIVE};63 enum e_type {ABS, REL}; 68 64 void clear(); 69 65 t_irc bncTimeFromSinex(QString snxStr, bncTime& time);
Note:
See TracChangeset
for help on using the changeset viewer.