source: ntrip/trunk/BNS/bns.h@ 756

Last change on this file since 756 was 756, checked in by mervart, 16 years ago

* empty log message *

File size: 343 bytes
Line 
1#ifndef BNS_H
2#define BNS_H
3
4#include <QApplication>
5#include <QThread>
6#include <QMutex>
7
8class bns : public QThread {
9 Q_OBJECT
10 public:
11 bns(QObject* parent = 0);
12 virtual ~bns();
13 virtual void run();
14
15 protected:
16
17 public slots:
18 void slotMessage(const QByteArray msg);
19
20 private slots:
21
22 private:
23 QMutex _mutex;
24};
25#endif
Note: See TracBrowser for help on using the repository browser.