vector 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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) 1999
  10. * Boris Fomitchev
  11. *
  12. * This material is provided "as is", with absolutely no warranty expressed
  13. * or implied. Any use is at your own risk.
  14. *
  15. * Permission to use or copy this software for any purpose is hereby granted
  16. * without fee, provided the above notices are retained on all copies.
  17. * Permission to modify the code and to distribute modified code is granted,
  18. * provided the above notices are retained, and a notice that the code was
  19. * modified is included with the above copyright notice.
  20. *
  21. */
  22. #ifndef _STLP_VECTOR
  23. #ifndef _STLP_OUTERMOST_HEADER_ID
  24. # define _STLP_OUTERMOST_HEADER_ID 0x77
  25. # include <stl/_prolog.h>
  26. # define _STLP_VECTOR
  27. #endif
  28. #if (_STLP_OUTERMOST_HEADER_ID == 0x77)
  29. # ifndef _STLP_INTERNAL_ALGOBASE_H
  30. # include <stl/_algobase.h>
  31. # endif
  32. # ifndef _STLP_INTERNAL_VECTOR_H
  33. # include <stl/_vector.h>
  34. # endif
  35. #endif
  36. #if (_STLP_OUTERMOST_HEADER_ID != 0x77) || defined (_STLP_IMPORT_VENDOR_STD)
  37. # if defined (_STLP_HAS_INCLUDE_NEXT)
  38. # include_next <vector>
  39. # else
  40. # include _STLP_NATIVE_HEADER(vector)
  41. # endif
  42. #endif
  43. #if (_STLP_OUTERMOST_HEADER_ID == 0x77)
  44. # include <stl/_epilog.h>
  45. # undef _STLP_OUTERMOST_HEADER_ID
  46. #endif
  47. #endif /* _STLP_VECTOR */
  48. // Local Variables:
  49. // mode:C++
  50. // End: