//---------------------------------------------------------------------------
#ifndef idleform1H
#define idleform1H
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
//---------------------------------------------------------------------------
class TIdleForm : public TForm
{
__published:	// IDE-managed Components
	TLabel *Label1;
private:	// User declarations
    bool CanUpdate;
public:		// User declarations
	__fastcall TIdleForm(TComponent* Owner);
    void __fastcall IdleFunction(System::TObject *Sender, bool &Done);
    void __fastcall DoUpdate();
};
//---------------------------------------------------------------------------
extern TIdleForm *IdleForm;
//---------------------------------------------------------------------------
#endif
