home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- // Borland BIDS Container Library
- // Copyright (c) 1991, 1997 by Borland International, All Rights Reserved
- //
- //$Revision: 5.15 $
- //
- // Set up some default sizes for BIDS containers.
- //----------------------------------------------------------------------------
- #if !defined(CLASSLIB_RESOURCE_H)
- #define CLASSLIB_RESOURCE_H
-
- #if defined(BI_NAMESPACE)
- namespace ClassLib {
- #endif
-
- const DEFAULT_HASH_TABLE_SIZE = 111;
- const DEFAULT_BAG_SIZE = 29;
- const DEFAULT_SET_SIZE = 29;
- const DEFAULT_DEQUE_SIZE = 20;
- const DEFAULT_QUEUE_SIZE = 20;
- const DEFAULT_STACK_SIZE = 20;
- const DEFAULT_ARRAY_SIZE = 20;
- const DEFAULT_DICT_SIZE = 20;
-
- #if defined(BI_NAMESPACE)
- } // namespace ClassLib
- #endif
-
- #endif // CLASSLIB_RESOURCE_H
-