Changeset 2881 in ntrip
- Timestamp:
- Jan 26, 2011, 11:07:46 AM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncantex.cpp
r2880 r2881 59 59 void bncAntex::readFile(const QString& fileName) { 60 60 61 QFile inFile(fileName); 62 inFile.open(QIODevice::ReadOnly | QIODevice::Text); 63 64 QTextStream in(&inFile); 65 66 while ( !in.atEnd() ) { 67 QString line = in.readLine(); 68 69 } 61 70 } -
trunk/BNC/bncmodel.cpp
r2874 r2881 51 51 #include "bncsettings.h" 52 52 #include "bnctides.h" 53 #include "bncantex.h" 53 54 54 55 using namespace std; … … 257 258 _nmeaStream->setDevice(_nmeaFile); 258 259 } 260 261 QString antexFileName = settings.value("pppAntex").toString(); 262 if (!antexFileName.isEmpty()) { 263 _antex = new bncAntex(); 264 _antex->readFile(antexFileName); 265 } 259 266 } 260 267 … … 267 274 delete _posAverage[ii]; 268 275 } 276 delete _antex; 269 277 } 270 278 -
trunk/BNC/bncmodel.h
r2874 r2881 35 35 class t_epoData; 36 36 class t_satData; 37 class bncAntex; 37 38 38 39 class bncParam { … … 153 154 double _sigAmb0; 154 155 double _sigClk0; 156 bncAntex* _antex; 155 157 }; 156 158
Note:
See TracChangeset
for help on using the changeset viewer.