mem_fn.hpp 596 B

123456789101112131415161718192021222324
  1. #ifndef BOOST_MEM_FN_HPP_INCLUDED
  2. #define BOOST_MEM_FN_HPP_INCLUDED
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  5. # pragma once
  6. #endif
  7. //
  8. // mem_fn.hpp - a generalization of std::mem_fun[_ref]
  9. //
  10. // Copyright (c) 2009 Peter Dimov
  11. //
  12. // Distributed under the Boost Software License, Version 1.0.
  13. // See accompanying file LICENSE_1_0.txt or copy at
  14. // http://www.boost.org/LICENSE_1_0.txt
  15. //
  16. // See http://www.boost.org/libs/bind/mem_fn.html for documentation.
  17. //
  18. #include <boost/bind/mem_fn.hpp>
  19. #endif // #ifndef BOOST_MEM_FN_HPP_INCLUDED