Changeset 8756 in ntrip
- Timestamp:
- May 16, 2019, 1:57:31 PM (6 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r8567 r8756 533 533 } 534 534 535 // Auxiliary Function for sorting MP data 536 //////////////////////////////////////////////////////////////////////////// 537 bool t_reqcAnalyze::mpLessThan(const t_polarPoint* p1, const t_polarPoint* p2) { 538 return p1->_value < p2->_value; 539 } 540 535 541 // 536 542 //////////////////////////////////////////////////////////////////////////// … … 576 582 } 577 583 } 584 585 // Sort MP data (make the largest values always visible) 586 // ----------------------------------------------------- 587 qStableSort(dataMP._data->begin(), dataMP._data->end(), mpLessThan); 578 588 } 579 589 } -
trunk/BNC/src/rinex/reqcanalyze.h
r8566 r8756 201 201 void printReport(const t_rnxObsFile* obsFile); 202 202 203 static bool mpLessThan(const t_polarPoint* p1, const t_polarPoint* p2); 204 203 205 QString _logFileName; 204 206 QFile* _logFile;
Note:
See TracChangeset
for help on using the changeset viewer.