home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl453up.zip / stl453fx / stlport / old_hp / bvector.h < prev    next >
C/C++ Source or Header  |  2002-04-29  |  1KB  |  69 lines

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Copyright (c) 1996,1997
  7.  * Silicon Graphics Computer Systems, Inc.
  8.  *
  9.  * Copyright (c) 1997
  10.  * Moscow Center for SPARC Technology
  11.  *
  12.  * Copyright (c) 1999 
  13.  * Boris Fomitchev
  14.  *
  15.  * This material is provided "as is", with absolutely no warranty expressed
  16.  * or implied. Any use is at your own risk.
  17.  *
  18.  * Permission to use or copy this software for any purpose is hereby granted 
  19.  * without fee, provided the above notices are retained on all copies.
  20.  * Permission to modify the code and to distribute modified code is granted,
  21.  * provided the above notices are retained, and a notice that the code was
  22.  * modified is included with the above copyright notice.
  23.  *
  24.  */
  25.  
  26. #ifndef _STLP_BVECTOR_H
  27. #define _STLP_BVECTOR_H
  28.  
  29. # ifndef _STLP_OUTERMOST_HEADER_ID
  30. #  define _STLP_OUTERMOST_HEADER_ID 0xa004
  31. #  include <stl/_prolog.h>
  32. # endif
  33.  
  34. #include <algobase.h>
  35.  
  36. #include <stl/_range_errors.h>
  37.  
  38. #ifdef _STLP_CLASS_PARTIAL_SPECIALIZATION
  39. #include <vector.h>
  40. #else
  41. #include <alloc.h>
  42. #endif 
  43.  
  44. #include <stl/_vector.h>
  45. #include <stl/_bvector.h>
  46.  
  47. #ifdef _STLP_USE_NAMESPACES
  48.  
  49. # ifdef _STLP_BROKEN_USING_DIRECTIVE
  50. using namespace STLPORT;
  51. # else
  52. using _STLP_STD::bit_vector;
  53. # endif
  54.  
  55. #endif /* _STLP_USE_NAMESPACES */
  56.  
  57. # if (_STLP_OUTERMOST_HEADER_ID == 0xa004)
  58. #  include <stl/_epilog.h>
  59. #  undef _STLP_OUTERMOST_HEADER_ID
  60. # endif
  61.  
  62. #endif /* _STLP_BVECTOR_H */
  63.  
  64. // Local Variables:
  65. // mode:C++
  66. // End:
  67.  
  68.  
  69.