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