Files
konsole/include/kwrited.h
Lars Doelle 70f6a43358 renamed TEShell -> TEPty
svn path=/trunk/kdebase/konsole/; revision=39383
2000-01-28 04:20:05 +00:00

20 lines
278 B
C++

#ifndef KWRITED_H
#define KWRITED_H
#include <TEPty.h>
#include <qmultilineedit.h>
class KWrited : public QObject
{ Q_OBJECT
public:
KWrited();
~KWrited();
private slots:
void block_in(const char* bytes, int len);
private:
QMultiLineEdit* wid;
TEPty* pty;
};
#endif