source: ntrip/trunk/BNC/bncnetqueryrtp.h@ 1712

Last change on this file since 1712 was 1712, checked in by mervart, 15 years ago

* empty log message *

File size: 642 bytes
Line 
1#ifndef BNCNETQUERYRTP_H
2#define BNCNETQUERYRTP_H
3
4#include "bncnetquery.h"
5
6class bncNetQueryRtp : public bncNetQuery {
7 Q_OBJECT
8 public:
9 bncNetQueryRtp();
10 virtual ~bncNetQueryRtp();
11
12 virtual void stop();
13 virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
14 virtual void startRequest(const QUrl& url, const QByteArray& gga);
15 virtual void waitForReadyRead(QByteArray& outData);
16 virtual void sendNMEA(const QByteArray& gga);
17
18 private slots:
19 void slotKeepAlive();
20
21 private:
22 QTcpSocket* _socket;
23 QUdpSocket* _udpSocket;
24 QEventLoop* _eventLoop;
25 QByteArray _session;
26 int _CSeq;
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.