Changeset 8797 in ntrip
- Timestamp:
- Sep 20, 2019, 2:41:07 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/t_prn.h
r8168 r8797 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.