home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl453up.zip / stl453fx / stlport / old_hp / deque.h < prev    next >
C/C++ Source or Header  |  2002-04-29  |  2KB  |  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_DEQUE_H
  27. #define _STLP_DEQUE_H
  28.  
  29. # ifndef _STLP_OUTERMOST_HEADER_ID
  30. #  define _STLP_OUTERMOST_HEADER_ID 0xa006
  31. #  include <stl/_prolog.h>
  32. # endif
  33.  
  34. #ifndef _STLP_ALGOBASE_H
  35. # include <algobase.h>
  36. #endif
  37.  
  38. #ifndef _STLP_RANGE_ERRORS_H
  39. # include <stl/_range_errors.h>
  40. #endif
  41.  
  42. #ifndef _STLP_ALLOC_H
  43. # include <alloc.h>
  44. #endif
  45.  
  46. #ifndef _STLP_INTERNAL_DEQUE_H
  47. # include <stl/_deque.h>
  48. #endif
  49.  
  50. #ifdef _STLP_USE_NAMESPACES
  51. # ifdef _STLP_BROKEN_USING_DIRECTIVE
  52. using namespace STLPORT;
  53. # else
  54. using STLPORT::deque;
  55. using STLPORT::__deque__;
  56. # endif /*  _STLP_BROKEN_USING_DIRECTIVE */
  57. #endif /* _STLP_USE_NAMESPACES */
  58.  
  59. # if (_STLP_OUTERMOST_HEADER_ID == 0xa006)
  60. #  include <stl/_epilog.h>
  61. #  undef _STLP_OUTERMOST_HEADER_ID
  62. # endif
  63.  
  64. #endif /* _STLP_DEQUE_H */
  65.  
  66. // Local Variables:
  67. // mode:C++
  68. // End:
  69.