home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / HOMEMOD.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef HomeModH
  7. #define HomeModH
  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. #include <basemod.h>
  20. //---------------------------------------------------------------------------
  21. class THome : public TBase
  22. {
  23. __published:
  24.     TButton *Button2;
  25.     TButton *Button3;
  26.     void __fastcall Button3Click(TObject *Sender);
  27.     void __fastcall Button2Click(TObject *Sender);
  28. private:        // private user declarations
  29. public:         // public user declarations
  30.     virtual __fastcall THome(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern THome *Home;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.