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

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

* empty log message *

File size: 344 bytes
Line 
1#ifndef BNSEPH_H
2#define BNSEPH_H
3
4#include <QThread>
5#include <QtNetwork>
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 void error(const QByteArray msg);
17
18 private:
19 QTcpSocket* _socket;
20};
21#endif
Note: See TracBrowser for help on using the repository browser.