- Timestamp:
- Aug 3, 2010, 4:06:47 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r2316 r2528 257 257 // Add New Thread 258 258 //////////////////////////////////////////////////////////////////////////// 259 void bncCaster::addGetThread(bncGetThread* getThread) { 259 void bncCaster::addGetThread(bncGetThread* getThread, bool noNewThread) { 260 260 261 261 qRegisterMetaType<p_obs>("p_obs"); … … 276 276 _threads.push_back(getThread); 277 277 278 getThread->start(); 278 if (noNewThread) { 279 getThread->run(); 280 } 281 else { 282 getThread->start(); 283 } 279 284 } 280 285 -
trunk/BNC/bnccaster.h
r2316 r2528 40 40 bncCaster(const QString& outFileName, int port); 41 41 ~bncCaster(); 42 void addGetThread(bncGetThread* getThread); 42 void addGetThread(bncGetThread* getThread, bool noNewThread = false); 43 43 int numStations() const {return _staIDs.size();} 44 44 -
trunk/BNC/bncgetthread.h
r2519 r2528 87 87 void newNMEAstr(QByteArray str); 88 88 89 p rotected:89 public: 90 90 virtual void run(); 91 91 -
trunk/BNC/bncmain.cpp
r2521 r2528 158 158 159 159 bncGetThread* getThread = new bncGetThread(rawFile); 160 caster->addGetThread(getThread); 160 caster->addGetThread(getThread, true); 161 161 } 162 162 }
Note:
See TracChangeset
for help on using the changeset viewer.