Changeset 7968 in ntrip for branches/BNC_2.12/src/PPP


Ignore:
Timestamp:
Jun 29, 2016, 2:38:57 PM (8 years ago)
Author:
stuerze
Message:

consideration of provider ID changes in SSR correction streams during PPP processing

Location:
branches/BNC_2.12/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/PPP/pppClient.cpp

    r7934 r7968  
    565565}
    566566
     567// Constructor
     568//////////////////////////////////////////////////////////////////////////////
     569void t_pppClient::reset() {
     570
     571  // to delete all parameters
     572  delete _filter;
     573  _filter   = new t_pppFilter();
     574
     575  // to delete old orbit and clock corrections
     576  delete _ephPool;
     577  _ephPool  = new t_pppEphPool();
     578
     579  // to delete old code biases
     580  delete _obsPool;
     581  _obsPool  = new t_pppObsPool();
     582}
  • branches/BNC_2.12/src/PPP/pppClient.h

    r7288 r7968  
    4545  static t_pppClient* instance();
    4646
     47  void reset();
     48
    4749 private:
    4850  void initOutput(t_output* output);
Note: See TracChangeset for help on using the changeset viewer.