Searched defs:constant_property_map (Results 1 – 1 of 1) sorted by relevance
23 struct constant_property_map : public boost::put_get_helper< const Value&, struct26 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() argument33 constant_property_map(const value_type& value) : m_value(value) {} in constant_property_map() argument35 constant_property_map(const constant_property_map& copy) in constant_property_map() function40 inline reference operator[](const key_type&) const { return m_value; } in operator []()42 value_type m_value;