- Timestamp:
- Dec 26, 2014, 12:52:31 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccore.cpp
r6441 r6444 207 207 printEphHeader(); 208 208 209 if (_ephUser.putNewEph(&eph ) == success) {209 if (_ephUser.putNewEph(&eph, true) == success) { 210 210 printEph(eph, true); 211 211 } … … 225 225 printEphHeader(); 226 226 227 if (_ephUser.putNewEph(&eph ) == success) {227 if (_ephUser.putNewEph(&eph, true) == success) { 228 228 printEph(eph, true); 229 229 } … … 243 243 printEphHeader(); 244 244 245 if (_ephUser.putNewEph(&eph ) == success) {245 if (_ephUser.putNewEph(&eph, true) == success) { 246 246 printEph(eph, true); 247 247 } … … 261 261 printEphHeader(); 262 262 263 if (_ephUser.putNewEph(&eph ) == success) {263 if (_ephUser.putNewEph(&eph, true) == success) { 264 264 printEph(eph, true); 265 265 } -
trunk/BNC/src/bncephuser.cpp
r6443 r6444 80 80 //////////////////////////////////////////////////////////////////////////// 81 81 void bncEphUser::slotNewGPSEph(t_ephGPS eph) { 82 putNewEph(&eph );82 putNewEph(&eph, false); 83 83 } 84 84 … … 86 86 //////////////////////////////////////////////////////////////////////////// 87 87 void bncEphUser::slotNewGlonassEph(t_ephGlo eph) { 88 putNewEph(&eph );88 putNewEph(&eph, false); 89 89 } 90 90 … … 92 92 //////////////////////////////////////////////////////////////////////////// 93 93 void bncEphUser::slotNewGalileoEph(t_ephGal eph) { 94 putNewEph(&eph );94 putNewEph(&eph, false); 95 95 } 96 96 … … 98 98 //////////////////////////////////////////////////////////////////////////// 99 99 void bncEphUser::slotNewSBASEph(t_ephSBAS eph) { 100 putNewEph(&eph );100 putNewEph(&eph, false); 101 101 } 102 102 103 103 // 104 104 //////////////////////////////////////////////////////////////////////////// 105 t_irc bncEphUser::putNewEph(const t_eph* eph ) {105 t_irc bncEphUser::putNewEph(const t_eph* eph, bool check) { 106 106 107 107 QMutexLocker locker(&_mutex); -
trunk/BNC/src/bncephuser.h
r6443 r6444 47 47 virtual ~bncEphUser(); 48 48 49 t_irc putNewEph(const t_eph* newEph );49 t_irc putNewEph(const t_eph* newEph, bool check); 50 50 51 51 const t_eph* ephLast(const QString& prn) {
Note:
See TracChangeset
for help on using the changeset viewer.