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

  1. //---------------------------------------------------------------------------
  2. #ifndef HomeModH
  3. #define HomeModH
  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. #include <basemod.h>
  16. //---------------------------------------------------------------------------
  17. class THome : public TBase
  18. {
  19. __published:
  20.     TButton *Button2;
  21.     TButton *Button3;
  22.     void __fastcall Button3Click(TObject *Sender);
  23.     void __fastcall Button2Click(TObject *Sender);
  24. private:        // private user declarations
  25. public:         // public user declarations
  26.     virtual __fastcall THome(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern THome *Home;
  30. //---------------------------------------------------------------------------
  31. #endif
  32.