Changeset 2143 in ntrip for trunk/BNC/bncpppclient.cpp


Ignore:
Timestamp:
Dec 31, 2009, 10:46:56 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppclient.cpp

    r2123 r2143  
    333333  // Filter Solution
    334334  // ---------------
    335   if (_model->update(_epoData) != success) {
    336     return;
    337   }
    338 }
    339 
     335  if (_model->update(_epoData) == success) {
     336    double xyz[3];
     337    xyz[0] = _model->x();
     338    xyz[1] = _model->y();
     339    xyz[2] = _model->z();
     340    emit newPosition(_model->time(), xyz);   
     341  }
     342}
     343
Note: See TracChangeset for help on using the changeset viewer.