//--------------------------------------------------------------------------- #ifndef LogThreadFH #define LogThreadFH //--------------------------------------------------------------------------- #include #include "ITSCommF.h" //--------------------------------------------------------------------------- class TLogThread : public TItsThread { public: TLogThread(); ~TLogThread(); public: TPanel *FPnlState; virtual DWORD __fastcall Process(LPVOID AParam); virtual void __fastcall Cancel() { }; }; //--------------------------------------------------------------------------- extern PACKAGE TLogThread *LogThread; //--------------------------------------------------------------------------- #endif