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

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

* empty log message *

File size: 308 bytes
RevLine 
[758]1#ifndef BNSEPH_H
2#define BNSEPH_H
3
4#include <QThread>
[759]5#include <QtNetwork>
[758]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:
[759]18 QTcpSocket* _socket;
[758]19};
20#endif
Note: See TracBrowser for help on using the repository browser.