Warning, file /include/boost/flyweight/key_value_fwd.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 #ifndef BOOST_FLYWEIGHT_KEY_VALUE_FWD_HPP
0010 #define BOOST_FLYWEIGHT_KEY_VALUE_FWD_HPP
0011
0012 #if defined(_MSC_VER)
0013 #pragma once
0014 #endif
0015
0016 namespace boost{
0017
0018 namespace flyweights{
0019
0020 struct no_key_from_value;
0021
0022 template<typename Key,typename Value,typename KeyFromValue=no_key_from_value>
0023 struct key_value;
0024
0025 }
0026
0027 }
0028
0029 #endif