19 lines
581 B
C++
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
|