Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  * Copyright (c) 1996,1997
  15.  * Silicon Graphics Computer Systems, Inc.
  16.  *
  17.  * Permission to use, copy, modify, distribute and sell this software
  18.  * and its documentation for any purpose is hereby granted without fee,
  19.  * provided that the above copyright notice appear in all copies and
  20.  * that both that copyright notice and this permission notice appear
  21.  * in supporting documentation.  Silicon Graphics makes no
  22.  * representations about the suitability of this software for any
  23.  * purpose.  It is provided "as is" without express or implied warranty.
  24.  */
  25.  
  26. #ifndef _CPP_BACKWARD_ALGOBASE_H
  27. #define _CPP_BACKWARD_ALGOBASE_H 1
  28.  
  29. #include "backward_warning.h"
  30. #include "pair.h"
  31. #include "iterator.h"
  32. #include <bits/stl_algobase.h>
  33. #include <bits/stl_uninitialized.h>
  34.  
  35. // Names from stl_algobase.h
  36. using std::iter_swap;
  37. using std::swap;
  38. using std::min;
  39. using std::max;
  40. using std::copy;
  41. using std::copy_backward;
  42. using std::copy_n;
  43. using std::fill;
  44. using std::fill_n;
  45. using std::mismatch;
  46. using std::equal;
  47. using std::lexicographical_compare;
  48. using std::lexicographical_compare_3way;
  49.  
  50. // Names from stl_uninitialized.h
  51. using std::uninitialized_copy;
  52. using std::uninitialized_copy_n;
  53. using std::uninitialized_fill;
  54. using std::uninitialized_fill_n;
  55.  
  56. #endif /* _CPP_BACKWARD_ALGOBASE_H */
  57.  
  58. // Local Variables:
  59. // mode:C++
  60. // End:
  61.