- Timestamp:
- Aug 2, 2014, 4:47:09 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/ppp.h
r5743 r5744 44 44 }; 45 45 46 class t_ satObs {46 class t_pppSatObs { 47 47 public: 48 48 t_prn _prn; -
trunk/BNC/src/PPP/pppClient.cpp
r5743 r5744 305 305 // 306 306 ////////////////////////////////////////////////////////////////////////////// 307 void t_pppClient::initOutput(t_ pppOutput* output) {307 void t_pppClient::initOutput(t_output* output) { 308 308 _output = output; 309 309 _output->_numSat = 0; … … 397 397 ////////////////////////////////////////////////////////////////////////////// 398 398 void t_pppClient::processEpoch(int numSatRover, const t_pppSatObs* satObsRover, 399 t_ pppOutput* output) {399 t_output* output) { 400 400 401 401 try { -
trunk/BNC/src/PPP/pppClient.h
r5743 r5744 29 29 void putBiases(int numBiases, const t_satBiases* biases); 30 30 void processEpoch(int numSatRover, const t_pppSatObs* satObsRover, 31 t_ pppOutput* output);31 t_output* output); 32 32 const t_ephPool* ephPool() const {return _ephPool;} 33 33 const t_obsPool* obsPool() const {return _obsPool;} … … 41 41 42 42 private: 43 void initOutput(t_ pppOutput* output);43 void initOutput(t_output* output); 44 44 void finish(t_irc irc); 45 45 void clearObs(); … … 53 53 double cmpOffGG(std::vector<t_satObs*>& obsVector); 54 54 55 t_ pppOutput*_output;55 t_output* _output; 56 56 t_ephPool* _ephPool; 57 57 t_obsPool* _obsPool;
Note:
See TracChangeset
for help on using the changeset viewer.