diff options
Diffstat (limited to 'include/plist')
| -rw-r--r-- | include/plist/Array.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h index 1b7728a..5f82e83 100644 --- a/include/plist/Array.h +++ b/include/plist/Array.h | |||
| @@ -39,7 +39,14 @@ public : | |||
| 39 | 39 | ||
| 40 | Node* Clone() const; | 40 | Node* Clone() const; |
| 41 | 41 | ||
| 42 | typedef std::vector<Node*>::iterator iterator; | ||
| 43 | typedef std::vector<Node*>::const_iterator const_iterator; | ||
| 44 | |||
| 42 | Node* operator[](unsigned int index); | 45 | Node* operator[](unsigned int index); |
| 46 | iterator Begin(); | ||
| 47 | iterator End(); | ||
| 48 | const_iterator Begin() const; | ||
| 49 | const_iterator End() const; | ||
| 43 | void Append(Node* node); | 50 | void Append(Node* node); |
| 44 | void Insert(Node* node, unsigned int pos); | 51 | void Insert(Node* node, unsigned int pos); |
| 45 | void Remove(Node* node); | 52 | void Remove(Node* node); |
