home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / IBREG.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  1KB  |  42 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1997 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. #ifndef IBRegHPP
  6. #define IBRegHPP
  7. //----------------------------------------------------------------------------
  8. #include <libconst.hpp>
  9. #include <DB.hpp>
  10. #include <Classes.hpp>
  11. #include <DsgnIntf.hpp>
  12. #include <SysUtils.hpp>
  13. #include <System.hpp>
  14.  
  15. #include "ibctrls.h"
  16. #include "ibevnts.h"
  17. #include "ibproc32.h"
  18.  
  19. namespace Ibreg
  20. {
  21. //-- type declarations -------------------------------------------------------
  22. class TIBEventListProperty : public TClassProperty
  23. {
  24. public:
  25.     virtual TPropertyAttributes __fastcall GetAttributes(void);
  26.     virtual void __fastcall Edit(void);
  27. public:
  28.     __fastcall virtual ~TIBEventListProperty(void);
  29.     __fastcall TIBEventListProperty(void);
  30. };
  31.  
  32. //-- var, const, procedure ---------------------------------------------------
  33. extern void __fastcall Register(void);
  34. //-- end unit ----------------------------------------------------------------
  35. } //namespace ibreg
  36.  
  37. #if !defined(NO_IMPLICIT_NAMESPACE_USE)
  38. using namespace Ibreg;
  39. #endif
  40.  
  41. #endif    // IBReg
  42.