source: ogBrowser-Git/qtermwidget/examples/cpp/RemoteTerm/remoteterm.h @ ffbf8ac

jenkinsmain
Last change on this file since ffbf8ac was 64efc22, checked in by Vadim Troshchinskiy <vtroshchinskiy@…>, 19 months ago

Update qtermwidget to modern version

  • Property mode set to 100644
File size: 319 bytes
Line 
1#ifndef WIDGET_H
2#define WIDGET_H
3
4#include <qtermwidget5/qtermwidget.h>
5
6class QTcpSocket;
7
8class RemoteTerm : public QTermWidget
9{
10    Q_OBJECT
11public:
12    RemoteTerm(const QString &ipaddr, quint16 port, QWidget *parent = 0);
13public slots:
14     void atError();
15private:
16    QTcpSocket *socket;
17};
18
19#endif // WIDGET_H
Note: See TracBrowser for help on using the repository browser.