jenkinsmain
Last change
on this file since c0cec9d was
64efc22,
checked in by Vadim Troshchinskiy <vtroshchinskiy@…>, 20 months ago
|
Update qtermwidget to modern version
|
-
Property mode set to
100644
|
File size:
319 bytes
|
Rev | Line | |
---|
[64efc22] | 1 | #ifndef WIDGET_H |
---|
| 2 | #define WIDGET_H |
---|
| 3 | |
---|
| 4 | #include <qtermwidget5/qtermwidget.h> |
---|
| 5 | |
---|
| 6 | class QTcpSocket; |
---|
| 7 | |
---|
| 8 | class RemoteTerm : public QTermWidget |
---|
| 9 | { |
---|
| 10 | Q_OBJECT |
---|
| 11 | public: |
---|
| 12 | RemoteTerm(const QString &ipaddr, quint16 port, QWidget *parent = 0); |
---|
| 13 | public slots: |
---|
| 14 | void atError(); |
---|
| 15 | private: |
---|
| 16 | QTcpSocket *socket; |
---|
| 17 | }; |
---|
| 18 | |
---|
| 19 | #endif // WIDGET_H |
---|
Note: See
TracBrowser
for help on using the repository browser.