Lines Matching refs:prop
831 /// @param prop the property to add to the section.
833 config::section::add_property(const property_sptr prop)
834 {priv_->properties_.push_back(prop);}
1608 while (property_sptr prop = read_property())
1610 properties.push_back(prop);
1808 /// @param prop the property which value to serialize.
1810 /// @return the string that represents the value of @p prop.
1812 write_property_value(const property_sptr& prop)
1815 if (simple_property_sptr simple_prop = is_simple_property(prop))
1820 else if (list_property_sptr list_prop = is_list_property(prop))
1822 else if (tuple_property_sptr tuple_prop = is_tuple_property(prop))
1832 /// @param prop the property to serialize to the output stream.
1838 write_property(const property_sptr& prop,
1841 out << prop->get_name();
1842 string value = write_property_value(prop);
1844 out << " = " << write_property_value(prop);