home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BASEMOD.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  1KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef BaseModH
  7. #define BaseModH
  8. //---------------------------------------------------------------------------
  9. #include <windows.hpp>
  10. #include <messages.hpp>
  11. #include <sysutils.hpp>
  12. #include <classes.hpp>
  13. #include <graphics.hpp>
  14. #include <controls.hpp>
  15. #include <forms.hpp>
  16. #include <dialogs.hpp>
  17. #include <extctrls.hpp>
  18. #include <stdctrls.hpp>
  19. //---------------------------------------------------------------------------
  20. class TBase : public TForm
  21. {
  22. __published:
  23.     TPanel *Panel1;
  24.     TPanel *Panel2;
  25.     TLabel *Label1;
  26.     TButton *Button1;
  27.     void __fastcall Button1Click(TObject *Sender);
  28. private:        // private user declarations
  29. public:         // public user declarations
  30.     virtual __fastcall TBase(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TBase *Base;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.