Lines Matching defs:value
51 /// where each section is a set of key/value pairs. Section names,
59 /// A single key/value pair.
63 std::string value; ///< The entry value.
69 : value(v), referenced(false)
76 /// Fetch the value.
79 /// Set the value.
80 void setValue(const std::string &v) { value = v; }
82 /// Append the given string to the value. A space is inserted
83 /// between the existing value and the new value. Since this
87 void appendValue(const std::string &v) { value += " "; value += v; }
113 /// the new value will be appended to the existing entry. If
114 /// false, the new value will replace the existing entry.
115 void addEntry(const std::string &entryName, const std::string &value,
119 /// Assignment should be of the form "param=value" or
120 /// "param+=value" (for append). This funciton parses the
176 /// Take string of the form "<section>:<parameter>=<value>" or
177 /// "<section>:<parameter>+=<value>" and add to database.
181 /// Find value corresponding to given section and entry names.
182 /// Value is returned by reference in 'value' param.
185 std::string &value) const;