//--------------------------------------------------------------------------- #ifndef WDGThrd1H #define WDGThrd1H //--------------------------------------------------------------------------- #include //--------------------------------------------------------------------------- class WDGThread : public TThread { private: unsigned char Data; protected: void __fastcall Execute(); public: __fastcall WDGThread(bool CreateSuspended); void __fastcall UpdateCaption(); }; //--------------------------------------------------------------------------- #endif