source: ntrip/trunk/BNC/src/bncnetquerys.h@ 10777

Last change on this file since 10777 was 10777, checked in by stuerze, 4 weeks ago

CHANGE: back to the class QextSerialPort because the QT5 internal class QSerialPort seems to have a bug

File size: 554 bytes
RevLine 
[1752]1#ifndef BNCSNETQUERYS_H
2#define BNCSNETQUERYS_H
3
4#include "bncnetquery.h"
[10777]5#include "serial/qextserialport.h"
[1752]6
7class bncNetQueryS : public bncNetQuery {
8 public:
9 bncNetQueryS();
10 virtual ~bncNetQueryS();
11
12 virtual void stop();
13 virtual void waitForRequestResult(const QUrl& url, QByteArray& outData);
14 virtual void startRequest(const QUrl& url, const QByteArray& gga);
[6787]15 virtual void keepAliveRequest(const QUrl& url, const QByteArray& gga);
[1752]16 virtual void waitForReadyRead(QByteArray& outData);
17
18 private:
[10777]19 QextSerialPort* _serialPort;
[1752]20};
21
22#endif
Note: See TracBrowser for help on using the repository browser.