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

  1. //----------------------------------------------------------------------------
  2. #ifndef FirstH
  3. #define FirstH
  4. //----------------------------------------------------------------------------
  5. #include <StdCtrls.hpp>
  6. #include <Dialogs.hpp>
  7. #include <Forms.hpp>
  8. #include <Controls.hpp>
  9. #include <Graphics.hpp>
  10. #include <Classes.hpp>
  11. #include <SysUtils.hpp>
  12. #include <Messages.hpp>
  13. #include <Windows.hpp>
  14. #include <System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published:
  19.     TButton *Button1;
  20.     void __fastcall Button1Click(TObject *Sender);
  21. public:
  22.     virtual __fastcall TForm1(TComponent *Owner);
  23. };
  24. //----------------------------------------------------------------------------
  25. extern TForm1 *Form1;
  26. //----------------------------------------------------------------------------
  27. #endif    
  28.