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

22 lines
615 B
C++

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