You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
319 B
20 lines
319 B
#ifndef WIDGET_H
|
|
#define WIDGET_H
|
|
|
|
#include <qtermwidget5/qtermwidget.h>
|
|
|
|
class QTcpSocket;
|
|
|
|
class RemoteTerm : public QTermWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RemoteTerm(const QString &ipaddr, quint16 port, QWidget *parent = 0);
|
|
public slots:
|
|
void atError();
|
|
private:
|
|
QTcpSocket *socket;
|
|
};
|
|
|
|
#endif // WIDGET_H
|