source: ntrip/trunk/BNC/bnctableitem.h@ 184

Last change on this file since 184 was 184, checked in by mervart, 18 years ago

* empty log message *

File size: 378 bytes
Line 
1
2#ifndef BNCTABLEITEM_H
3#define BNCTABLEITEM_H
4
5#include <QtCore>
6#include <QtGui>
7
8struct Observation;
9
10class 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 unsigned long _bytesRead;
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.