Componentes.Terceros.jvcl/official/3.32/examples/JvUIB/BCB/ThreadedQueries/p_QThrd.h

21 lines
655 B
C++

//---------------------------------------------------------------------------
#ifndef p_QThrdH
#define p_QThrdH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include "JvComponent.hpp"
#include "JvUIB.hpp"
//---------------------------------------------------------------------------
class TMyThread : public TThread
{
private:
protected:
void __fastcall Execute();
public:
__fastcall TMyThread(bool CreateSuspended);
virtual __fastcall ~TMyThread(void);
};
//---------------------------------------------------------------------------
#endif