Warning, file /include/boost/type_erasure/static_binding.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_TYPE_ERASURE_STATIC_BINDING_HPP_INCLUDED
0012 #define BOOST_TYPE_ERASURE_STATIC_BINDING_HPP_INCLUDED
0013
0014 namespace boost {
0015 namespace type_erasure {
0016
0017
0018
0019
0020
0021
0022
0023 template<class Map>
0024 struct static_binding { typedef Map map_type; };
0025
0026
0027
0028
0029
0030 template<class Map>
0031 static_binding<Map> make_binding() { return static_binding<Map>(); }
0032
0033 }
0034 }
0035
0036 #endif