function.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:3k
源码类别:

STL

开发平台:

Visual C++

  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.  *
  15.  * Copyright (c) 1996,1997
  16.  * Silicon Graphics Computer Systems, Inc.
  17.  *
  18.  * Permission to use, copy, modify, distribute and sell this software
  19.  * and its documentation for any purpose is hereby granted without fee,
  20.  * provided that the above copyright notice appear in all copies and
  21.  * that both that copyright notice and this permission notice appear
  22.  * in supporting documentation.  Silicon Graphics makes no
  23.  * representations about the suitability of this software for any
  24.  * purpose.  It is provided "as is" without express or implied warranty.
  25.  */
  26. #ifndef __SGI_STL_FUNCTION_H
  27. #define __SGI_STL_FUNCTION_H
  28. #ifndef __STL_CONFIG_H
  29. #include <stl_config.h>
  30. #endif
  31. #ifndef __SGI_STL_INTERNAL_RELOPS
  32. #include <stl_relops.h>
  33. #endif
  34. #include <stddef.h>
  35. #ifndef __SGI_STL_INTERNAL_FUNCTION_H
  36. #include <stl_function.h>
  37. #endif
  38. #ifdef __STL_USE_NAMESPACE_FOR_RELOPS
  39. // Names from stl_relops.h
  40. using __STD_RELOPS::operator!=;
  41. using __STD_RELOPS::operator>;
  42. using __STD_RELOPS::operator<=;
  43. using __STD_RELOPS::operator>=;
  44. #endif /* __STL_USE_NAMESPACE_FOR_RELOPS */
  45. #ifdef __STL_USE_NAMESPACES
  46. // Names from stl_function.h
  47. using __STD::unary_function; 
  48. using __STD::binary_function; 
  49. using __STD::plus; 
  50. using __STD::minus; 
  51. using __STD::multiplies; 
  52. using __STD::divides; 
  53. using __STD::identity_element; 
  54. using __STD::modulus; 
  55. using __STD::negate; 
  56. using __STD::equal_to; 
  57. using __STD::not_equal_to; 
  58. using __STD::greater; 
  59. using __STD::less; 
  60. using __STD::greater_equal; 
  61. using __STD::less_equal; 
  62. using __STD::logical_and; 
  63. using __STD::logical_or; 
  64. using __STD::logical_not; 
  65. using __STD::unary_negate; 
  66. using __STD::binary_negate; 
  67. using __STD::not1; 
  68. using __STD::not2; 
  69. using __STD::binder1st; 
  70. using __STD::binder2nd; 
  71. using __STD::bind1st; 
  72. using __STD::bind2nd; 
  73. using __STD::unary_compose; 
  74. using __STD::binary_compose; 
  75. using __STD::compose1; 
  76. using __STD::compose2; 
  77. using __STD::pointer_to_unary_function; 
  78. using __STD::pointer_to_binary_function; 
  79. using __STD::ptr_fun; 
  80. using __STD::identity; 
  81. using __STD::select1st; 
  82. using __STD::select2nd; 
  83. using __STD::project1st; 
  84. using __STD::project2nd; 
  85. using __STD::constant_void_fun; 
  86. using __STD::constant_unary_fun; 
  87. using __STD::constant_binary_fun; 
  88. using __STD::constant0; 
  89. using __STD::constant1; 
  90. using __STD::constant2; 
  91. using __STD::subtractive_rng; 
  92. using __STD::mem_fun_t; 
  93. using __STD::const_mem_fun_t; 
  94. using __STD::mem_fun_ref_t; 
  95. using __STD::const_mem_fun_ref_t; 
  96. using __STD::mem_fun1_t; 
  97. using __STD::const_mem_fun1_t; 
  98. using __STD::mem_fun1_ref_t; 
  99. using __STD::const_mem_fun1_ref_t; 
  100. using __STD::mem_fun; 
  101. using __STD::mem_fun_ref; 
  102. using __STD::mem_fun1; 
  103. using __STD::mem_fun1_ref; 
  104. #endif /* __STL_USE_NAMESPACES */
  105. #endif /* __SGI_STL_FUNCTION_H */
  106. // Local Variables:
  107. // mode:C++
  108. // End: