Changeset 5826 in ntrip for trunk/BNC/src/PPP/pppClient.cpp
- Timestamp:
- Aug 6, 2014, 1:39:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r5825 r5826 51 51 #include "pppEphPool.h" 52 52 #include "pppObsPool.h" 53 #include "pppSatBias.h"54 53 #include "bncconst.h" 55 54 #include "bncutils.h" … … 78 77 _log = new ostringstream(); 79 78 _ephPool = new t_pppEphPool(); 80 _obsPool = new t_ frqObsPool();79 _obsPool = new t_pppObsPool(); 81 80 _staRover = new t_pppStation(); 82 81 _filter = new t_pppFilter(); … … 142 141 // 143 142 ////////////////////////////////////////////////////////////////////////////// 144 void t_pppClient::putBiases(const vector<t_satBias es*>& biases) {143 void t_pppClient::putBiases(const vector<t_satBias*>& biases) { 145 144 for (unsigned ii = 0; ii < biases.size(); ii++) { 146 _obsPool->putBias es(new t_pppSatBias(*biases[ii]));145 _obsPool->putBias(new t_satBias(*biases[ii])); 147 146 } 148 147 }
Note:
See TracChangeset
for help on using the changeset viewer.