diff options
| author | 2014-08-16 17:48:45 -0400 | |
|---|---|---|
| committer | 2014-09-20 00:10:46 +0200 | |
| commit | b6c43e901c1ee3ded15261621be1aaa090dab984 (patch) | |
| tree | 218257fc8751fc0fc979d292acd9162278cadcd7 /include/plist/Array.h | |
| parent | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (diff) | |
| download | libplist-b6c43e901c1ee3ded15261621be1aaa090dab984.tar.gz libplist-b6c43e901c1ee3ded15261621be1aaa090dab984.tar.bz2 | |
Added const to Array.GetSize(), and to 3 Node methods.
Diffstat (limited to 'include/plist/Array.h')
| -rw-r--r-- | include/plist/Array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h index 69ff26f..745b750 100644 --- a/include/plist/Array.h +++ b/include/plist/Array.h | |||
| @@ -44,7 +44,7 @@ public : | |||
| 44 | void Insert(Node* node, unsigned int pos); | 44 | void Insert(Node* node, unsigned int pos); |
| 45 | void Remove(Node* node); | 45 | void Remove(Node* node); |
| 46 | void Remove(unsigned int pos); | 46 | void Remove(unsigned int pos); |
| 47 | unsigned int GetNodeIndex(Node* node); | 47 | unsigned int GetNodeIndex(Node* node) const; |
| 48 | 48 | ||
| 49 | private : | 49 | private : |
| 50 | std::vector<Node*> _array; | 50 | std::vector<Node*> _array; |
