functional.hpp 939 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright (C) 2013 Vicente J. Botet Escriba
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. //
  6. // 2013/10 Vicente J. Botet Escriba
  7. // Creation.
  8. #ifndef BOOST_CSBL_FUNCTIONAL_HPP
  9. #define BOOST_CSBL_FUNCTIONAL_HPP
  10. #include <functional>
  11. namespace boost
  12. {
  13. namespace csbl
  14. {
  15. // D.8.1, base (deprecated):
  16. // 20.9.3, reference_wrapper:
  17. // 20.9.4, arithmetic operations:
  18. // 20.9.5, comparisons:
  19. // 20.9.6, logical operations:
  20. // 20.9.7, bitwise operations:
  21. // 20.9.8, negators:
  22. // 20.9.9, bind:
  23. // D.9, binders (deprecated):
  24. // D.8.2.1, adaptors (deprecated):
  25. // D.8.2.2, adaptors (deprecated):
  26. // 20.9.10, member function adaptors:
  27. // 20.9.11 polymorphic function wrappers:
  28. using ::std::function;
  29. // 20.9.12, hash function primary template:
  30. }
  31. }
  32. #endif // header