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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef maintestH
  7. #define maintestH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <StdCtrls.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:
  17.     TButton *bRunAuto;
  18.     void __fastcall bRunAutoClick(TObject *Sender);
  19. private:        // private user declarations
  20. public:         // public user declarations
  21.     virtual __fastcall TForm1(TComponent* Owner);
  22. };
  23. //---------------------------------------------------------------------------
  24. extern TForm1 *Form1;
  25. //---------------------------------------------------------------------------
  26. #endif
  27.