12345678910111213141516171819202122232425262728 |
- //---------------------------------------------------------------------------
- #ifndef LogThreadFH
- #define LogThreadFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include "ITSCommF.h"
- //---------------------------------------------------------------------------
- class TLogThread : public TItsThread
- {
- public:
- TLogThread();
- ~TLogThread();
- public:
- TPanel *FPnlState;
- TTimer *FTmrDb;
- virtual DWORD __fastcall Process(LPVOID AParam);
- virtual void __fastcall Cancel()
- {
- };
- void __fastcall updateLedColor(TColor AColor);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TLogThread *LogThread;
- //---------------------------------------------------------------------------
- #endif
|