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

  1. //----------------------------------------------------------------------------
  2. #ifndef OCBH
  3. #define OCBH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\System.hpp>
  6. #include <vcl\Windows.hpp>
  7. #include <vcl\SysUtils.hpp>
  8. #include <vcl\Classes.hpp>
  9. #include <vcl\Graphics.hpp>
  10. #include <vcl\StdCtrls.hpp>
  11. #include <vcl\Forms.hpp>
  12. #include <vcl\Controls.hpp>
  13. #include <vcl\Buttons.hpp>
  14. #include <vcl\ExtCtrls.hpp>
  15. //----------------------------------------------------------------------------
  16. class TOKBottomDlg : public TForm
  17. {
  18. __published:        
  19.     TButton *OKBtn;
  20.     TButton *CancelBtn;
  21.     TBevel *Bevel1;
  22. private:
  23. public:
  24.     virtual __fastcall TOKBottomDlg(TComponent* AOwner);
  25. };
  26. //----------------------------------------------------------------------------
  27. extern TOKBottomDlg *OKBottomDlg;
  28. //----------------------------------------------------------------------------
  29. #endif    
  30.