- Timestamp:
- Apr 25, 2008, 10:44:23 AM (17 years ago)
- Location:
- trunk/BNS
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNS/bns.cpp ¶
r840 r847 20 20 #include "bns.h" 21 21 #include "bnsutils.h" 22 #include "bnsrinex.h" 22 23 23 24 using namespace std; … … 77 78 _logStream = new QTextStream(_logFile); 78 79 } 80 } 81 82 // RINEX writer 83 // ------------ 84 if ( settings.value("rnxPath").toString().isEmpty() ) { 85 _rnx = 0; 86 } 87 else { 88 _rnx = new bnsRinex(); 79 89 } 80 90 } … … 319 329 _outSocket->flush(); 320 330 } 331 if (_rnx) { 332 _rnx->write(GPSweek, GPSweeks, prn, xx); 333 } 321 334 } 322 335 -
TabularUnified trunk/BNS/bns.h ¶
r836 r847 8 8 9 9 #include "bnseph.h" 10 11 class bnsRinex; 10 12 11 13 class t_ephPair { … … 61 63 QMutex _mutex; 62 64 QMap<QString, t_ephPair*> _ephList; 65 66 bnsRinex* _rnx; 63 67 }; 64 68 #endif -
TabularUnified trunk/BNS/bns.pro ¶
r836 r847 23 23 24 24 HEADERS = bns.h bnswindow.h bnshlpdlg.h bnshtml.h \ 25 bnseph.h bnsutils.h 25 bnseph.h bnsutils.h bnsrinex.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 32 bnseph.cpp bnsutils.cpp bnsrinex.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.