source: ntrip/branches/BNC_LM/bncnetqueryv1.h@ 9337

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

* empty log message *

File size: 585 bytes
Line 
1#ifndef BNCNETQUERYV1_H
2#define BNCNETQUERYV1_H
3
4#include "bncnetquery.h"
5
6class bncNetQueryV1 : public bncNetQuery {
7 public:
8 bncNetQueryV1();
9 virtual ~bncNetQueryV1();
10
11 virtual void stop();
12 virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
13 virtual void startRequest(const QUrl& url, const QByteArray& gga);
14 virtual void waitForReadyRead(QByteArray& outData);
15
16 private:
17 void startRequestPrivate(const QUrl& url, const QByteArray& gga,
18 bool sendRequestOnly);
19 QEventLoop* _eventLoop;
20 QTcpSocket* _socket;
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.