epoc32/include/stdapis/stlport/memory
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
     1.1 --- a/epoc32/include/stdapis/stlport/memory	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/stdapis/stlport/memory	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,70 @@
     1.4 -memory
     1.5 +/*
     1.6 + * Copyright (c) 1997-1999
     1.7 + * Silicon Graphics Computer Systems, Inc.
     1.8 + *
     1.9 + * Copyright (c) 1999 
    1.10 + * Boris Fomitchev
    1.11 + *
    1.12 + * This material is provided "as is", with absolutely no warranty expressed
    1.13 + * or implied. Any use is at your own risk.
    1.14 + *
    1.15 + * Permission to use or copy this software for any purpose is hereby granted 
    1.16 + * without fee, provided the above notices are retained on all copies.
    1.17 + * Permission to modify the code and to distribute modified code is granted,
    1.18 + * provided the above notices are retained, and a notice that the code was
    1.19 + * modified is included with the above copyright notice.
    1.20 + *
    1.21 + */
    1.22 +
    1.23 +#ifndef _STLP_MEMORY
    1.24 +# define _STLP_MEMORY
    1.25 +
    1.26 +# ifndef _STLP_OUTERMOST_HEADER_ID
    1.27 +#  define _STLP_OUTERMOST_HEADER_ID 0x46
    1.28 +#  include <stl/_prolog.h>
    1.29 +# endif
    1.30 +
    1.31 +# ifdef _STLP_PRAGMA_ONCE
    1.32 +#  pragma once
    1.33 +# endif
    1.34 +
    1.35 +# ifndef _STLP_INTERNAL_ALLOC_H
    1.36 +#  include <stl/_alloc.h>
    1.37 +# endif
    1.38 +
    1.39 +# ifndef _STLP_INTERNAL_TEMPBUF_H
    1.40 +#  include <stl/_tempbuf.h>
    1.41 +# endif
    1.42 +
    1.43 +# ifndef _STLP_INTERNAL_RAW_STORAGE_ITER_H
    1.44 +#  include <stl/_raw_storage_iter.h>
    1.45 +# endif
    1.46 +
    1.47 +# include <stl/_auto_ptr.h>
    1.48 +
    1.49 +# if defined (_STLP_IMPORT_VENDOR_STD)
    1.50 +
    1.51 +#  if defined (__MSL__)
    1.52 +#   include _STLP_NATIVE_HEADER(limits)
    1.53 +#  endif
    1.54 +
    1.55 +#  include _STLP_NATIVE_HEADER(memory)
    1.56 +
    1.57 +#  if defined (__MSL__) && (__MSL__ >= 0x2405	 && __MSL__ < 0x5201) 
    1.58 +/*  980401 vss  MSL 2.4  Pro 3 Release  */	
    1.59 +#   include <new_mem.h>
    1.60 +#  endif
    1.61 +
    1.62 +# endif
    1.63 +
    1.64 +# if (_STLP_OUTERMOST_HEADER_ID == 0x46)
    1.65 +#  include <stl/_epilog.h>
    1.66 +#  undef _STLP_OUTERMOST_HEADER_ID
    1.67 +# endif
    1.68 +
    1.69 +#endif /* _STLP_MEMORY */
    1.70 +
    1.71 +// Local Variables:
    1.72 +// mode:C++
    1.73 +// End:
    1.74 +