Home | History | Annotate | Download | only in brillo

Lines Matching refs:string

13 #include <string>
38 bool LoadFromString(const std::string& data);
45 // Returns a string with the contents of the store as key=value lines.
47 // result if the original string contained backslash-terminated lines (i.e.
49 std::string SaveToString() const;
52 bool GetString(const std::string& key, std::string* value) const;
55 void SetString(const std::string& key, const std::string& value);
59 bool GetBoolean(const std::string& key, bool* value) const;
62 void SetBoolean(const std::string& key, bool value);
65 std::vector<std::string> GetKeys() const;
69 std::map<std::string, std::string> store_;