Changeset 3577 in ntrip
- Timestamp:
- Dec 26, 2011, 9:39:41 AM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r3562 r3577 63 63 #include "latencychecker.h" 64 64 #include "bncpppclient.h" 65 #ifdef PPP_DLL_INTERFACE 66 #include "dllinterface.h" 67 #endif 65 68 #include "upload/bncrtnetdecoder.h" 66 69 #include "RTCM/RTCM2Decoder.h" … … 128 131 _nextSleep = 0; 129 132 _PPPclient = 0; 133 #ifdef PPP_DLL_INTERFACE 134 _dllInterface = 0; 135 #endif 130 136 _miscMount = settings.value("miscMount").toString(); 131 137 _decoder = 0; … … 337 343 connect(_PPPclient, SIGNAL(newNMEAstr(QByteArray)), 338 344 this, SIGNAL(newNMEAstr(QByteArray))); 345 #ifdef PPP_DLL_INTERFACE 346 _dllInterface = new t_dllInterface(); 347 #endif 339 348 } 340 349 #endif … … 368 377 } 369 378 delete _PPPclient; 379 #ifdef PPP_DLL_INTERFACE 380 delete _dllInterface; 381 #endif 370 382 if (_rawFile) { 371 383 QMapIterator<QString, GPSDecoder*> it(_decodersRaw); … … 549 561 if (_PPPclient && _staID == _PPPclient->staID()) { 550 562 _PPPclient->putNewObs(obs); 563 #ifdef PPP_DLL_INTERFACE 564 _dllInterface->putNewObs(obs); 565 #endif 551 566 } 552 567 #endif -
trunk/BNC/bncgetthread.h
r3562 r3577 41 41 class latencyChecker; 42 42 class bncPPPclient; 43 #ifdef PPP_DLL_INTERFACE 44 class t_dllInterface; 45 #endif 43 46 44 47 class bncGetThread : public QThread { … … 124 127 bool _rawOutput; 125 128 QMap<QString, long> _prnLastEpo; 129 #ifdef PPP_DLL_INTERFACE 130 t_dllInterface* _dllInterface; 131 #endif 126 132 }; 127 133
Note:
See TracChangeset
for help on using the changeset viewer.