Changeset 300 in ntrip
- Timestamp:
- Nov 12, 2006, 4:58:16 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncrinex.cpp ¶
r298 r300 40 40 * -----------------------------------------------------------------------*/ 41 41 42 #include <iostream.h>43 44 42 #include <stdlib.h> 45 46 #include <QSettings> 47 #include <QDir> 48 #include <QUrl> 49 #include <QDate> 50 #include <QFile> 51 #include <QTextStream> 43 #include <iostream> 52 44 #include <iomanip> 53 45 #include <math.h> 46 47 #include <QtCore> 48 #include <QUrl> 49 #include <QString> 54 50 55 51 #include "bncrinex.h" … … 129 125 QStringList tags = line.split(";"); 130 126 if (tags.at(1) == net) { 131 sklDir = tags.at(6); 132 cout << _mountPoint.path().mid(1).toAscii().data() << " " 133 << sklDir.toAscii().data() << endl; 127 sklDir = tags.at(6).trimmed(); 134 128 break; 135 129 } 136 130 } 131 } 132 if (!sklDir.isEmpty() && sklDir != "none") { 133 cout << _mountPoint.path().mid(1).toAscii().data() << " " 134 << sklDir.toAscii().data() << endl; 137 135 } 138 136 }
Note:
See TracChangeset
for help on using the changeset viewer.