Files
Tools_CPP/devices/Validators/ValidatorThread.~h
2024-11-01 12:23:13 +05:00

24 lines
666 B
Plaintext

//---------------------------------------------------------------------------
#ifndef ValidatorThreadH
#define ValidatorThreadH
//---------------------------------------------------------------------------
#include <Classes.hpp>
//---------------------------------------------------------------------------
class ValidatorThread : public TThread
{
private:
protected:
bool bStop;
int state;
void __fastcall Execute();
public:
int pay;
__fastcall ValidatorThread(bool CreateSuspended);
void Stop();
void __fastcall UpdateCaption();
void __fastcall UpdateState();
};
//---------------------------------------------------------------------------
#endif