diff options
author | 2025-04-06 11:48:14 +0200 | |
---|---|---|
committer | 2025-04-06 11:48:14 +0200 | |
commit | ed8a73301b844bf5f7efd9cd437c9c0765a49a88 (patch) | |
tree | 803d3f9bc1b08bba8ad5f921da42f42c297a9905 /include/plist | |
parent | 31f1a810e5264ef970bab17d517692ef906470e1 (diff) | |
download | libplist-ed8a73301b844bf5f7efd9cd437c9c0765a49a88.tar.gz libplist-ed8a73301b844bf5f7efd9cd437c9c0765a49a88.tar.bz2 |
C++: Add = operator to String class
Diffstat (limited to 'include/plist')
-rw-r--r-- | include/plist/String.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/plist/String.h b/include/plist/String.h index 7e8a6e4..95f8dd1 100644 --- a/include/plist/String.h +++ b/include/plist/String.h @@ -35,6 +35,7 @@ public : String(plist_t node, Node* parent = NULL); String(const String& s); String& operator=(const String& s); + String& operator=(const std::string& s); String& operator=(const char* s); String(const std::string& s); String(const char *s); |