home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 5 / Komponety.exe / ibreg.h < prev    next >
C/C++ Source or Header  |  1998-02-09  |  1KB  |  41 lines

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