home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / SWITCH1.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  34 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef Switch1H
  7. #define Switch1H
  8. //----------------------------------------------------------------------------
  9. #include <StdCtrls.hpp>
  10. #include <Dialogs.hpp>
  11. #include <Forms.hpp>
  12. #include <Controls.hpp>
  13. #include <Graphics.hpp>
  14. #include <Classes.hpp>
  15. #include <SysUtils.hpp>
  16. #include <Messages.hpp>
  17. #include <Windows.hpp>
  18. #include <System.hpp>
  19. //----------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published:
  23.     TButton *Button1;
  24.     void __fastcall Button1Click(TObject *Sender);
  25.     void __fastcall Button1Click2(TObject *Sender);
  26. private:
  27. public:
  28.     virtual __fastcall TForm1(TComponent *Owner);
  29. };
  30. //----------------------------------------------------------------------------
  31. extern TForm1 *Form1;
  32. //----------------------------------------------------------------------------
  33. #endif    
  34.