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.
|
#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
|
|
|