LogThreadF.h 744 B

1234567891011121314151617181920212223242526
  1. //---------------------------------------------------------------------------
  2. #ifndef LogThreadFH
  3. #define LogThreadFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include "ITSCommF.h"
  7. //---------------------------------------------------------------------------
  8. class TLogThread : public TItsThread
  9. {
  10. public:
  11. TLogThread();
  12. ~TLogThread();
  13. public:
  14. TPanel *FPnlState;
  15. virtual DWORD __fastcall Process(LPVOID AParam);
  16. virtual void __fastcall Cancel()
  17. {
  18. };
  19. };
  20. //---------------------------------------------------------------------------
  21. extern PACKAGE TLogThread *LogThread;
  22. //---------------------------------------------------------------------------
  23. #endif