File: remoteterm.h

package info (click to toggle)
qtermwidget 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,684 kB
  • sloc: cpp: 14,226; python: 57; makefile: 12
file content (19 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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