Changeset 824 in ntrip
- Timestamp:
- Apr 15, 2008, 9:38:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r823 r824 32 32 // --------------------------------------- 33 33 _bnseph = new t_bnseph(parent); 34 35 connect(_bnseph, SIGNAL(newEph(gpsEph*)),36 this, SLOT(slotNewEph(gpsEph*)), Qt::DirectConnection);37 connect(_bnseph, SIGNAL(newMessage(QByteArray)),38 this, SLOT(slotMessage(const QByteArray)), Qt::DirectConnection);39 connect(_bnseph, SIGNAL(error(QByteArray)),40 this, SLOT(slotError(const QByteArray)), Qt::DirectConnection);41 34 42 35 // Server listening for rtnet results … … 46 39 _clkServer = new QTcpServer; 47 40 _clkServer->listen(QHostAddress::Any, settings.value("clkPort").toInt()); 48 connect(_clkServer, SIGNAL(newConnection()),this,49 SLOT(slotNewConnection()), Qt::DirectConnection);50 41 51 42 // Socket and file for outputting the results … … 217 208 _bnseph->start(); 218 209 210 // Connect Slots-Signals 211 // --------------------- 212 connect(_bnseph, SIGNAL(newEph(gpsEph*)), 213 this, SLOT(slotNewEph(gpsEph*))); 214 215 connect(_bnseph, SIGNAL(newMessage(QByteArray)), 216 this, SLOT(slotMessage(const QByteArray))); 217 218 connect(_bnseph, SIGNAL(error(QByteArray)), 219 this, SLOT(slotError(const QByteArray))); 220 221 connect(_clkServer, SIGNAL(newConnection()),this, 222 SLOT(slotNewConnection())); 223 219 224 // Endless loop 220 225 // ------------
Note:
See TracChangeset
for help on using the changeset viewer.