home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / BASEMOD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  1.0 KB  |  32 lines

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