Changeset 3010 in ntrip for trunk/BNC/bncephuser.cpp


Ignore:
Timestamp:
Feb 22, 2011, 5:57:41 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncephuser.cpp

    r3009 r3010  
    9191    t_ephGPS* eLast = new t_ephGPS();
    9292    eLast->set(&gpseph);
    93     _eph.insert(prn, new t_ephPair(eLast));
     93    _eph.insert(prn, new t_ephPair());
     94    _eph[prn]->last = eLast;
    9495  }
    9596}
     
    118119    t_ephGlo* eLast = new t_ephGlo();
    119120    eLast->set(&gloeph);
    120     _eph.insert(prn, new t_ephPair(eLast));
     121    _eph.insert(prn, new t_ephPair());
     122    _eph[prn]->last = eLast;
    121123  }
    122124}
     
    143145    t_ephGal* eLast = new t_ephGal();
    144146    eLast->set(&galeph);
    145     _eph.insert(prn, new t_ephPair(eLast));
     147    _eph.insert(prn, new t_ephPair());
     148    _eph[prn]->last = eLast;
    146149  }
    147150}
Note: See TracChangeset for help on using the changeset viewer.