22 lines
615 B
C++
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
|