source:
ntrip/trunk/BNC/bnctableitem.h@
267
Last change on this file since 267 was 185, checked in by , 18 years ago | |
---|---|
File size: 371 bytes |
Line | |
---|---|
1 | |
2 | #ifndef BNCTABLEITEM_H |
3 | #define BNCTABLEITEM_H |
4 | |
5 | #include <QtCore> |
6 | #include <QtGui> |
7 | |
8 | struct Observation; |
9 | |
10 | class bncTableItem : public QObject, public QTableWidgetItem { |
11 | Q_OBJECT |
12 | |
13 | public: |
14 | bncTableItem(); |
15 | ~bncTableItem(); |
16 | |
17 | signals: |
18 | |
19 | public slots: |
20 | void slotNewObs(const QByteArray& staID, Observation* obs); |
21 | |
22 | private: |
23 | double _bytesRead; |
24 | }; |
25 | |
26 | #endif |
Note:
See TracBrowser
for help on using the repository browser.