Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:01:08

0001 // Copyright (C) 2013 Vicente J. Botet Escriba
0002 //
0003 //  Distributed under the Boost Software License, Version 1.0. (See accompanying
0004 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 //
0006 // 2013/10 Vicente J. Botet Escriba
0007 //   Creation.
0008 
0009 #ifndef BOOST_CSBL_FUNCTIONAL_HPP
0010 #define BOOST_CSBL_FUNCTIONAL_HPP
0011 
0012 #include <functional>
0013 
0014 namespace boost
0015 {
0016   namespace csbl
0017   {
0018     // D.8.1, base (deprecated):
0019     // 20.9.3, reference_wrapper:
0020     // 20.9.4, arithmetic operations:
0021     // 20.9.5, comparisons:
0022     // 20.9.6, logical operations:
0023     // 20.9.7, bitwise operations:
0024     // 20.9.8, negators:
0025     // 20.9.9, bind:
0026     // D.9, binders (deprecated):
0027     // D.8.2.1, adaptors (deprecated):
0028     // D.8.2.2, adaptors (deprecated):
0029     // 20.9.10, member function adaptors:
0030     // 20.9.11 polymorphic function wrappers:
0031     using ::std::function;
0032     // 20.9.12, hash function primary template:
0033   }
0034 }
0035 
0036 #endif // header