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