Changeset 1161 in ntrip
- Timestamp:
- Oct 18, 2008, 8:53:55 AM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bnctableitem.cpp ¶
r464 r1161 40 40 41 41 #include "bnctableitem.h" 42 #include "bncgetthread.h" 42 43 #include "RTCM/GPSDecoder.h" 43 44 … … 47 48 _bytesRead = 0.0; 48 49 setText(QString("%1 byte(s)").arg(0)); 50 _getThread = 0; 49 51 } 50 52 -
TabularUnified trunk/BNC/bnctableitem.h ¶
r464 r1161 30 30 31 31 struct Observation; 32 struct bncGetThread; 32 33 33 34 class bncTableItem : public QObject, public QTableWidgetItem { … … 37 38 bncTableItem(); 38 39 ~bncTableItem(); 40 void setGetThread(bncGetThread* getThread) {_getThread = getThread;} 41 bncGetThread* getThread() {return _getThread;} 39 42 40 43 signals: … … 46 49 double _bytesRead; 47 50 QMutex _mutex; 51 bncGetThread* _getThread; 48 52 }; 49 53
Note:
See TracChangeset
for help on using the changeset viewer.