LogThreadF.h 764 B

123456789101112131415161718192021222324252627
  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. TTimer *FTmrDb;
  16. virtual DWORD __fastcall Process(LPVOID AParam);
  17. virtual void __fastcall Cancel()
  18. {
  19. };
  20. };
  21. //---------------------------------------------------------------------------
  22. extern PACKAGE TLogThread *LogThread;
  23. //---------------------------------------------------------------------------
  24. #endif