Changeset 848 in ntrip
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNS/bns.cpp ¶
r847 r848 21 21 #include "bnsutils.h" 22 22 #include "bnsrinex.h" 23 #include "bnssp3.h" 23 24 24 25 using namespace std; … … 87 88 else { 88 89 _rnx = new bnsRinex(); 90 } 91 92 // SP3 writer 93 // ---------- 94 if ( settings.value("sp3Path").toString().isEmpty() ) { 95 _sp3 = 0; 96 } 97 else { 98 _sp3 = new bnsSP3(); 89 99 } 90 100 } … … 332 342 _rnx->write(GPSweek, GPSweeks, prn, xx); 333 343 } 344 if (_sp3) { 345 _sp3->write(GPSweek, GPSweeks, prn, xx); 346 } 334 347 } 335 348 -
TabularUnified trunk/BNS/bns.h ¶
r847 r848 10 10 11 11 class bnsRinex; 12 class bnsSP3; 12 13 13 14 class t_ephPair { … … 63 64 QMutex _mutex; 64 65 QMap<QString, t_ephPair*> _ephList; 65 66 66 bnsRinex* _rnx; 67 bnsSP3* _sp3; 67 68 }; 68 69 #endif -
TabularUnified trunk/BNS/bns.pro ¶
r847 r848 23 23 24 24 HEADERS = bns.h bnswindow.h bnshlpdlg.h bnshtml.h \ 25 bnseph.h bnsutils.h bnsrinex.h 25 bnseph.h bnsutils.h bnsrinex.h bnssp3.h 26 26 27 27 HEADERS += newmat/controlw.h newmat/include.h newmat/myexcept.h \ … … 30 30 31 31 SOURCES = bnsmain.cpp bns.cpp bnswindow.cpp bnshlpdlg.cpp bnshtml.cpp \ 32 bnseph.cpp bnsutils.cpp bnsrinex.cpp 32 bnseph.cpp bnsutils.cpp bnsrinex.cpp bnssp3.cpp 33 33 34 34 SOURCES += newmat/bandmat.cpp newmat/cholesky.cpp newmat/evalue.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.