You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
601 B
C++
25 lines
601 B
C++
// ClearThread.h: interface for the CClearThread class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_CLEARTHREAD_H__17C9FD37_21E1_4FC2_83D4_942D1DE68D4B__INCLUDED_)
|
|
#define AFX_CLEARTHREAD_H__17C9FD37_21E1_4FC2_83D4_942D1DE68D4B__INCLUDED_
|
|
|
|
#include <qthread.h>
|
|
#include <qtextedit.h>
|
|
|
|
class CClearThread : public QThread
|
|
{
|
|
public:
|
|
CClearThread(QTextEdit *pEdit);
|
|
virtual ~CClearThread();
|
|
|
|
private:
|
|
QTextEdit *m_pEditWidget;
|
|
|
|
protected:
|
|
virtual void run();
|
|
};
|
|
|
|
#endif // !defined(AFX_CLEARTHREAD_H__17C9FD37_21E1_4FC2_83D4_942D1DE68D4B__INCLUDED_)
|