source: ntrip/trunk/BNS/bnseph.h@ 758

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

* empty log message *

File size: 299 bytes
Line 
1#ifndef BNSEPH_H
2#define BNSEPH_H
3
4#include <QThread>
5#include <QMutex>
6
7class t_bnseph : public QThread {
8 Q_OBJECT
9 public:
10 t_bnseph(QObject* parent = 0);
11 virtual ~t_bnseph();
12 virtual void run();
13
14 signals:
15 void newMessage(const QByteArray msg);
16
17 private:
18 QMutex _mutex;
19};
20#endif
Note: See TracBrowser for help on using the repository browser.