- Timestamp:
- Dec 16, 2007, 5:26:43 PM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r625 r626 77 77 } 78 78 79 ~t_obs() { std::cout << "delete " << _o.StatID << " " << _status << std::endl;}79 ~t_obs() {} 80 80 81 81 t_obsInternal _o; -
trunk/BNC/bncrinex.cpp
r622 r626 468 468 void bncRinex::deepCopy(const p_obs obs) { 469 469 p_obs newObs = new t_obs(); 470 memcpy( newObs, obs, sizeof(*obs));470 memcpy(&newObs->_o, &obs->_o, sizeof(t_obsInternal)); 471 471 _obs.push_back(newObs); 472 472 }
Note:
See TracChangeset
for help on using the changeset viewer.