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

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