Home
last modified time | relevance | path

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

/third_party/boost/boost/graph/property_maps/
Dconstant_property_map.hpp23 struct constant_property_map : public boost::put_get_helper< const Value&, struct
26 typedef Key key_type;
27 typedef Value value_type;
28 typedef const Value& reference;
29 typedef boost::readable_property_map_tag category;
31 constant_property_map() : m_value() {} in constant_property_map() argument
33 constant_property_map(const value_type& value) : m_value(value) {} in constant_property_map() argument
35 constant_property_map(const constant_property_map& copy) in constant_property_map() function
40 inline reference operator[](const key_type&) const { return m_value; } in operator []()
42 value_type m_value;