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

  1. //---------------------------------------------------------------------------
  2. #ifndef maintestH
  3. #define maintestH
  4. //---------------------------------------------------------------------------
  5. #include <Forms.hpp>
  6. #include <StdCtrls.hpp>
  7. #include <Controls.hpp>
  8. #include <Classes.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:
  13.     TButton *bRunAuto;
  14.     void __fastcall bRunAutoClick(TObject *Sender);
  15. private:        // private user declarations
  16. public:         // public user declarations
  17.     virtual __fastcall TForm1(TComponent* Owner);
  18. };
  19. //---------------------------------------------------------------------------
  20. extern TForm1 *Form1;
  21. //---------------------------------------------------------------------------
  22. #endif
  23.