Home
last modified time | relevance | path

Searched defs:constant_writable_property_map (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/graph/property_maps/
Dconstant_property_map.hpp55 template < typename Key, typename Value > struct constant_writable_property_map struct
57 typedef Key key_type;
58 typedef Value value_type;
59 typedef Value& reference;
60 typedef boost::read_write_property_map_tag category;
62 constant_writable_property_map() : m_value() {} in constant_writable_property_map() function
64 constant_writable_property_map(const value_type& value) : m_value(value) {} in constant_writable_property_map() function
66 constant_writable_property_map(const constant_writable_property_map& copy) in constant_writable_property_map() function
75 friend void put(const constant_writable_property_map&, Key, Value) {} in put()
77 value_type m_value;