summaryrefslogtreecommitdiffstats
path: root/include/plist/Array.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Array.h')
-rw-r--r--include/plist/Array.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h
index 0239c78..34ddd6f 100644
--- a/include/plist/Array.h
+++ b/include/plist/Array.h
@@ -57,6 +57,16 @@ public :
57 void Remove(Node* node); 57 void Remove(Node* node);
58 void Remove(unsigned int pos); 58 void Remove(unsigned int pos);
59 unsigned int GetNodeIndex(Node* node) const; 59 unsigned int GetNodeIndex(Node* node) const;
60 template <typename T>
61 T* at(unsigned int index)
62 {
63 return (T*)(_array.at(index));
64 }
65 template <typename T>
66 T* At(unsigned int index)
67 {
68 return (T*)(_array.at(index));
69 }
60 70
61private : 71private :
62 std::vector<Node*> _array; 72 std::vector<Node*> _array;