home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl453up.zip / stl453fx / stlport / old_hp / tempbuf.h < prev    next >
C/C++ Source or Header  |  2002-04-29  |  2KB  |  80 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) 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.  
  23. #ifndef _STLP_TEMPBUF_H
  24. #define _STLP_TEMPBUF_H
  25.  
  26. # ifndef _STLP_OUTERMOST_HEADER_ID
  27. #  define _STLP_OUTERMOST_HEADER_ID 0xa028
  28. #  include <stl/_prolog.h>
  29. # endif
  30.  
  31. # ifndef _STLP_CLIMITS
  32. #  include <climits>
  33. # endif
  34.  
  35. #ifndef _STLP_CSTDDEF
  36. # include <cstddef>
  37. #endif
  38.  
  39. #ifndef _STLP_CSTDLIB
  40. # include <cstdlib>
  41. #endif
  42.  
  43. #if !defined (_STLP_NEW)
  44. # include <new>
  45. #endif
  46.  
  47. #ifndef __TYPE_TRAITS_H
  48. #include <stl/type_traits.h>
  49. #endif
  50.  
  51. #ifndef _STLP_PAIR_H
  52. #include <pair.h>
  53. #endif
  54.  
  55. #ifndef _STLP_INTERNAL_TEMPBUF_H
  56. #include <stl/_tempbuf.h>
  57. #endif
  58.  
  59. #ifdef _STLP_USE_NAMESPACES
  60.  
  61. # ifdef _STLP_BROKEN_USING_DIRECTIVE
  62. using namespace STLPORT;
  63. # else
  64. using _STLP_STD::get_temporary_buffer;
  65. using _STLP_STD::return_temporary_buffer;
  66. using _STLP_STD::temporary_buffer;
  67. # endif
  68. #endif /* _STLP_USE_NAMESPACES */
  69.  
  70. # if (_STLP_OUTERMOST_HEADER_ID == 0xa028)
  71. #  include <stl/_epilog.h>
  72. #  undef _STLP_OUTERMOST_HEADER_ID
  73. # endif
  74.  
  75. #endif /* _STLP_TEMPBUF_H */
  76.  
  77. // Local Variables:
  78. // mode:C++
  79. // End:
  80.