Files
AccompanyCube/ProgressThreadUnit.h
2026-06-13 00:10:11 +08:00

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