bmfwd.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
- /*
- * ===========================================================================
- * PRODUCTION $Log: bmfwd.h,v $
- * PRODUCTION Revision 1000.0 2004/04/21 16:00:47 gouriano
- * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
- * PRODUCTION
- * ===========================================================================
- */
- /*
- Copyright (c) 2002,2003 Anatoliy Kuznetsov.
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the "Software"), to deal in the Software without restriction,
- including without limitation the rights to use, copy, modify, merge,
- publish, distribute, sublicense, and/or sell copies of the Software,
- and to permit persons to whom the Software is furnished to do so,
- subject to the following conditions:
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- #ifndef BMFWD__H__INCLUDED__
- #define BMFWD__H__INCLUDED__
- #include "bmconst.h"
- namespace bm
- {
- class block_allocator;
- class ptr_allocator;
- template<class BA = block_allocator, class PA = ptr_allocator> class mem_alloc;
- template <class A, size_t N> class miniset;
- template<size_t N> class bvmini;
- typedef bm::bvmini<bm::set_total_blocks> standard_miniset;
- typedef mem_alloc<block_allocator, ptr_allocator> standard_allocator;
- template<class A = bm::standard_allocator,
- class MS = bm::standard_miniset>
- class bvector;
- } // namespace
- #endif