Files
konsole/include/kwrited.h
Lars Doelle 575b0fe37a added kwrited to provide utmp support
svn path=/trunk/kdebase/konsole/; revision=26810
1999-08-01 14:45:11 +00:00

20 lines
282 B
C++

#ifndef KWRITED_H
#define KWRITED_H
#include <TEShell.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;
Shell* shell;
};
#endif