19 lines
589 B
C++
19 lines
589 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef ProgressThreadUnitH
|
|
#define ProgressThreadUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <System.Classes.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TProgressThread : public TThread
|
|
{
|
|
private:
|
|
TForm * m_pForm;
|
|
protected:
|
|
void __fastcall Execute();
|
|
public:
|
|
__fastcall TProgressThread(bool CreateSuspended, TForm* pForm);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
#endif
|