diff options
| author | 2009-10-18 21:54:33 +0200 | |
|---|---|---|
| committer | 2009-10-18 21:54:33 +0200 | |
| commit | c17b420a7f65573a84d8acd8a6a92f9d4e0ae696 (patch) | |
| tree | 385120c277f2fdd8154a26ac525b56a473f32b7e /include/plist | |
| parent | 6f84d30c7bf3999c85c480a7cc297f1b5300054b (diff) | |
| download | libplist-c17b420a7f65573a84d8acd8a6a92f9d4e0ae696.tar.gz libplist-c17b420a7f65573a84d8acd8a6a92f9d4e0ae696.tar.bz2 | |
Tweak Dictioonary interface a bit.
Diffstat (limited to 'include/plist')
| -rw-r--r-- | include/plist/Dictionary.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h index 6169774..53e95e6 100644 --- a/include/plist/Dictionary.h +++ b/include/plist/Dictionary.h | |||
| @@ -45,7 +45,8 @@ class Dictionary : public Structure | |||
| 45 | Node* operator[](const std::string& key); | 45 | Node* operator[](const std::string& key); |
| 46 | iterator Begin(); | 46 | iterator Begin(); |
| 47 | iterator End(); | 47 | iterator End(); |
| 48 | void Insert(const std::string& key, Node* node); | 48 | iterator Find(const std::string& key); |
| 49 | iterator Insert(const std::string& key, Node* node); | ||
| 49 | void Remove(Node* node); | 50 | void Remove(Node* node); |
| 50 | void Remove(const std::string& key); | 51 | void Remove(const std::string& key); |
| 51 | 52 | ||
