- Timestamp:
- Jan 4, 2010, 3:39:55 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r2035 r2182 38 38 * 39 39 * -----------------------------------------------------------------------*/ 40 41 #include <iostream> 40 42 41 43 #include <math.h> … … 244 246 connect(getThread, SIGNAL(getThreadFinished(QByteArray)), 245 247 this, SLOT(slotGetThreadFinished(QByteArray))); 248 249 connect(getThread, SIGNAL(newNMEAstr(QByteArray)), 250 this, SLOT(slotNewNMEAstr(QByteArray))); 246 251 247 252 connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)), … … 510 515 return -1; 511 516 } 517 518 // 519 //////////////////////////////////////////////////////////////////////////// 520 void bncCaster::slotNewNMEAstr(QByteArray str) { 521 522 std::cout << str.data(); 523 524 } -
trunk/BNC/bnccaster.h
r2030 r2182 46 46 void newObs(QByteArray staID, bool firstObs, p_obs obs); 47 47 void slotReadMountPoints(); 48 void slotNewNMEAstr(QByteArray str); 48 49 49 50 signals: -
trunk/BNC/bncgetthread.cpp
r2145 r2182 291 291 connect(_PPPclient, SIGNAL(newPosition(bncTime, double, double, double)), 292 292 this, SIGNAL(newPosition(bncTime, double, double, double))); 293 connect(_PPPclient, SIGNAL(newNMEAstr(QByteArray)), 294 this, SIGNAL(newNMEAstr(QByteArray))); 293 295 } 294 296 -
trunk/BNC/bncgetthread.h
r2145 r2182 83 83 void getThreadFinished(QByteArray staID); 84 84 void newPosition(bncTime time, double x, double y, double z); 85 void newNMEAstr(QByteArray str); 85 86 86 87 protected: -
trunk/BNC/bncpppclient.cpp
r2145 r2182 63 63 _epoData = 0; 64 64 _model = new bncModel(staID); 65 connect(_model, SIGNAL(newNMEAstr(QByteArray)), 66 this, SIGNAL(newNMEAstr(QByteArray))); 65 67 } 66 68 -
trunk/BNC/bncpppclient.h
r2145 r2182 94 94 signals: 95 95 void newPosition(bncTime time, double x, double y, double z); 96 void newNMEAstr(QByteArray str); 96 97 97 98 private:
Note:
See TracChangeset
for help on using the changeset viewer.