Changeset 8803 in ntrip for branches/BNC_2.12
- Timestamp:
- Sep 20, 2019, 2:51:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/t_prn.h
r8167 r8803 11 11 static const unsigned MAXPRN_QZSS = 10; 12 12 static const unsigned MAXPRN_SBAS = 38; 13 static const unsigned MAXPRN_BDS = 37;13 static const unsigned MAXPRN_BDS = 63; 14 14 static const unsigned MAXPRN_IRNSS = 7; 15 15 static const unsigned MAXPRN = MAXPRN_GPS + MAXPRN_GLONASS + MAXPRN_GALILEO … … 62 62 63 63 bool operator==(const t_prn& prn2) const { 64 if (_system == prn2._system && _number == prn2._number 65 && _flags == prn2._flags) { 64 if (_system == prn2._system && 65 _number == prn2._number && 66 _flags == prn2._flags) { 66 67 return true; 67 68 }
Note:
See TracChangeset
for help on using the changeset viewer.