- Timestamp:
- Apr 15, 2008, 9:57:05 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r825 r826 196 196 // --------------------------------------- 197 197 _bnseph = new t_bnseph(parent()); 198 _bnseph->start(); 199 200 connect(_bnseph, SIGNAL(newEph(gpsEph*)), this, SLOT(slotNewEph(gpsEph*))); 201 202 connect(_bnseph, SIGNAL(newMessage(QByteArray)), 203 this, SLOT(slotMessage(const QByteArray))); 204 205 connect(_bnseph, SIGNAL(error(QByteArray)), 206 this, SLOT(slotError(const QByteArray))); 198 207 199 208 // Server listening for rtnet results … … 203 212 _clkServer->listen(QHostAddress::Any, settings.value("clkPort").toInt()); 204 213 205 // Start Thread that retrieves broadcast Ephemeris 206 // ----------------------------------------------- 207 _bnseph->start(); 208 209 // Connect Slots-Signals 210 // --------------------- 211 connect(_bnseph, SIGNAL(newEph(gpsEph*)), 212 this, SLOT(slotNewEph(gpsEph*))); 213 214 connect(_bnseph, SIGNAL(newMessage(QByteArray)), 215 this, SLOT(slotMessage(const QByteArray))); 216 217 connect(_bnseph, SIGNAL(error(QByteArray)), 218 this, SLOT(slotError(const QByteArray))); 219 220 connect(_clkServer, SIGNAL(newConnection()),this, 221 SLOT(slotNewConnection())); 214 connect(_clkServer, SIGNAL(newConnection()),this, SLOT(slotNewConnection())); 222 215 223 216 // Endless loop
Note:
See TracChangeset
for help on using the changeset viewer.