diff options
Diffstat (limited to 'include/plist')
| -rw-r--r-- | include/plist/Array.h | 4 | ||||
| -rw-r--r-- | include/plist/Dictionary.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h index 5f82e83..2b25e94 100644 --- a/include/plist/Array.h +++ b/include/plist/Array.h | |||
| @@ -44,9 +44,13 @@ public : | |||
| 44 | 44 | ||
| 45 | Node* operator[](unsigned int index); | 45 | Node* operator[](unsigned int index); |
| 46 | iterator Begin(); | 46 | iterator Begin(); |
| 47 | iterator begin(); | ||
| 47 | iterator End(); | 48 | iterator End(); |
| 49 | iterator end(); | ||
| 48 | const_iterator Begin() const; | 50 | const_iterator Begin() const; |
| 51 | const_iterator begin() const; | ||
| 49 | const_iterator End() const; | 52 | const_iterator End() const; |
| 53 | const_iterator end() const; | ||
| 50 | void Append(Node* node); | 54 | void Append(Node* node); |
| 51 | void Insert(Node* node, unsigned int pos); | 55 | void Insert(Node* node, unsigned int pos); |
| 52 | void Remove(Node* node); | 56 | void Remove(Node* node); |
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h index a3ac3a7..f3385e3 100644 --- a/include/plist/Dictionary.h +++ b/include/plist/Dictionary.h | |||
| @@ -45,10 +45,14 @@ public : | |||
| 45 | 45 | ||
| 46 | Node* operator[](const std::string& key); | 46 | Node* operator[](const std::string& key); |
| 47 | iterator Begin(); | 47 | iterator Begin(); |
| 48 | iterator begin(); | ||
| 48 | iterator End(); | 49 | iterator End(); |
| 50 | iterator end(); | ||
| 49 | iterator Find(const std::string& key); | 51 | iterator Find(const std::string& key); |
| 50 | const_iterator Begin() const; | 52 | const_iterator Begin() const; |
| 53 | const_iterator begin() const; | ||
| 51 | const_iterator End() const; | 54 | const_iterator End() const; |
| 55 | const_iterator end() const; | ||
| 52 | const_iterator Find(const std::string& key) const; | 56 | const_iterator Find(const std::string& key) const; |
| 53 | iterator Set(const std::string& key, const Node* node); | 57 | iterator Set(const std::string& key, const Node* node); |
| 54 | iterator Set(const std::string& key, const Node& node); | 58 | iterator Set(const std::string& key, const Node& node); |
