28 lines
965 B
C++
28 lines
965 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef FormularioREUSABLEH
|
|
#define FormularioREUSABLEH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "CoolForm.hpp"
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TFormREUSABLE : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TCoolForm *CoolForm1;
|
|
TButton *Button1;
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TFormREUSABLE(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TFormREUSABLE *FormREUSABLE;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|