Changeset 9507 in ntrip for trunk/BNC


Ignore:
Timestamp:
Oct 5, 2021, 4:01:01 PM (3 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src/PPP
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppRefSat.h

    r8956 r9507  
    1515class t_pppRefSat {
    1616public:
    17   t_pppRefSat ();
    18   ~t_pppRefSat();
     17  t_pppRefSat() {
     18    _prn = t_prn();
     19    _stecValue = 0.0;
     20  };
     21  t_pppRefSat(t_prn prn, double stecValue) {
     22    _prn = prn;
     23    _stecValue = stecValue;
     24  }
     25  ~t_pppRefSat() {};
    1926  t_prn    prn() {return _prn;}
    2027  void     setPrn(t_prn prn) {_prn = prn;}
     
    2532  double   _stecValue;
    2633};
    27 
    28 
    2934}
    3035
Note: See TracChangeset for help on using the changeset viewer.