Unit1.h 761 B

123456789101112131415161718192021
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13. private: // User declarations
  14. public: // User declarations
  15. __fastcall TForm1(TComponent* Owner);
  16. };
  17. //---------------------------------------------------------------------------
  18. extern PACKAGE TForm1 *Form1;
  19. //---------------------------------------------------------------------------
  20. #endif