home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / CLASSINC.PAK / RESOURCE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  896 b   |  30 lines

  1. //----------------------------------------------------------------------------
  2. // Borland BIDS Container Library
  3. // Copyright (c) 1991, 1997 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   5.15  $
  6. //
  7. // Set up some default sizes for BIDS containers.
  8. //----------------------------------------------------------------------------
  9. #if !defined(CLASSLIB_RESOURCE_H)
  10. #define CLASSLIB_RESOURCE_H
  11.  
  12. #if defined(BI_NAMESPACE)
  13. namespace ClassLib {
  14. #endif
  15.  
  16. const DEFAULT_HASH_TABLE_SIZE   = 111;
  17. const DEFAULT_BAG_SIZE          =  29;
  18. const DEFAULT_SET_SIZE          =  29;
  19. const DEFAULT_DEQUE_SIZE        =  20;
  20. const DEFAULT_QUEUE_SIZE        =  20;
  21. const DEFAULT_STACK_SIZE        =  20;
  22. const DEFAULT_ARRAY_SIZE        =  20;
  23. const DEFAULT_DICT_SIZE         =  20;
  24.  
  25. #if defined(BI_NAMESPACE)
  26. }   // namespace ClassLib
  27. #endif
  28.  
  29. #endif  // CLASSLIB_RESOURCE_H
  30.