bmfwd.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bmfwd.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/21 16:00:47  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  10. Copyright (c) 2002,2003 Anatoliy Kuznetsov.
  11. Permission is hereby granted, free of charge, to any person 
  12. obtaining a copy of this software and associated documentation 
  13. files (the "Software"), to deal in the Software without restriction, 
  14. including without limitation the rights to use, copy, modify, merge, 
  15. publish, distribute, sublicense, and/or sell copies of the Software, 
  16. and to permit persons to whom the Software is furnished to do so, 
  17. subject to the following conditions:
  18. The above copyright notice and this permission notice shall be included 
  19. in all copies or substantial portions of the Software.
  20. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
  21. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
  22. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
  23. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
  24. DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
  25. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
  26. OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #ifndef BMFWD__H__INCLUDED__
  29. #define BMFWD__H__INCLUDED__
  30. #include "bmconst.h"
  31. namespace bm
  32. {
  33. class block_allocator;
  34. class ptr_allocator;
  35. template<class BA = block_allocator, class PA = ptr_allocator> class mem_alloc;
  36. template <class A, size_t N> class miniset;
  37. template<size_t N> class bvmini;
  38. typedef bm::bvmini<bm::set_total_blocks> standard_miniset;
  39. typedef mem_alloc<block_allocator, ptr_allocator> standard_allocator;
  40. template<class A = bm::standard_allocator,  
  41.          class MS = bm::standard_miniset> 
  42. class bvector;
  43. } // namespace
  44. #endif