Add a method to setStringValue that takes a std::string argument

This commit is contained in:
timoore
2009-07-15 23:08:22 +00:00
committed by Tim Moore
parent 390eb1c6e9
commit 58417e78e5

View File

@@ -1419,12 +1419,17 @@ public:
*/
bool setStringValue (const char * relative_path, const char * value);
bool setStringValue(const char * relative_path, const std::string& value)
{ return setStringValue(relative_path, value.c_str()); }
/**
* Set another node's value as a string.
*/
bool setStringValue (const std::string& relative_path, const char * value)
{ return setStringValue(relative_path.c_str(), value); }
bool setStringValue (const std::string& relative_path,
const std::string& value)
{ return setStringValue(relative_path.c_str(), value.c_str()); }
/**
* Set another node's value with no specified type.