LogThreadF.h 815 B

12345678910111213141516171819202122232425262728
  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. void __fastcall updateLedColor(TColor AColor);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern PACKAGE TLogThread *LogThread;
  24. //---------------------------------------------------------------------------
  25. #endif