Componentes.Terceros.jvcl/official/3.32/examples/JvUIB/BCB/Backup/main.h

28 lines
984 B
C++

//---------------------------------------------------------------------------
#ifndef mainH
#define mainH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "JvUIB.hpp"
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published: // IDE-managed Components
TJvUIBBackup *Backup;
TMemo *Memo;
TButton *Go;
void __fastcall GoClick(TObject *Sender);
void __fastcall BackupVerbose(TObject *Sender, AnsiString Message);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif