//---------------------------------------------------------------------------

#ifndef EndingScreenH
#define EndingScreenH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class TProgressScreen : public TForm
{
__published:	// IDE-managed Components
        TProgressBar *ProgressBar1;
        TBitBtn *STARTOVER;
        TBitBtn *EXIT;
        void __fastcall STARTOVERClick(TObject *Sender);
        void __fastcall EXITClick(TObject *Sender);
private:	// User declarations
public:		// User declarations
        __fastcall TProgressScreen(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TProgressScreen *ProgressScreen;
//---------------------------------------------------------------------------
#endif
