Unit2.h 808 B

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