home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / classinc.pak / RESOURCE.H < prev    next >
C/C++ Source or Header  |  1997-07-23  |  2KB  |  34 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  RESOURCE.H                                                            */
  4. /*                                                                        */
  5. /*  Copyright (c) 1991, 1994 Borland International                        */
  6. /*  All Rights Reserved                                                   */
  7. /*                                                                        */
  8. /*------------------------------------------------------------------------*/
  9.  
  10. #if !defined( CLASSLIB_RESOURCE_H )
  11. #define CLASSLIB_RESOURCE_H
  12.  
  13. #if !defined( CLASSLIB_COMPILER_H )
  14. #include <classlib/compiler.h>
  15. #endif
  16.  
  17. /*------------------------------------------------------------------------*/
  18. /*                                                                        */
  19. /*  Set up some default sizes for containers.                             */
  20. /*                                                                        */
  21. /*------------------------------------------------------------------------*/
  22.  
  23. const DEFAULT_HASH_TABLE_SIZE   = 111;
  24. const DEFAULT_BAG_SIZE          =  29;
  25. const DEFAULT_SET_SIZE          =  29;
  26. const DEFAULT_DEQUE_SIZE        =  20;
  27. const DEFAULT_QUEUE_SIZE        =  20;
  28. const DEFAULT_STACK_SIZE        =  20;
  29. const DEFAULT_ARRAY_SIZE        =  20;
  30. const DEFAULT_DICT_SIZE         =  20;
  31.  
  32. #endif  // CLASSLIB_RESOURCE_H
  33.  
  34.