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

19 lines
581 B
C++

//---------------------------------------------------------------------------
#ifndef VerifyThreadUnitH
#define VerifyThreadUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
//---------------------------------------------------------------------------
class TVerifyThread : public TThread
{
private:
TForm * m_pForm;
protected:
void __fastcall Execute();
public:
__fastcall TVerifyThread(bool CreateSuspended, TForm* pForm);
};
//---------------------------------------------------------------------------
#endif