diff options
Diffstat (limited to 'include/plist')
| -rw-r--r-- | include/plist/Array.h | 2 | ||||
| -rw-r--r-- | include/plist/Structure.h | 6 |
2 files changed, 4 insertions, 4 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; |
diff --git a/include/plist/Structure.h b/include/plist/Structure.h index 8e609da..eded8b2 100644 --- a/include/plist/Structure.h +++ b/include/plist/Structure.h | |||
| @@ -34,10 +34,10 @@ class Structure : public Node | |||
| 34 | public : | 34 | public : |
| 35 | virtual ~Structure(); | 35 | virtual ~Structure(); |
| 36 | 36 | ||
| 37 | uint32_t GetSize(); | 37 | uint32_t GetSize() const; |
| 38 | 38 | ||
| 39 | std::string ToXml(); | 39 | std::string ToXml() const; |
| 40 | std::vector<char> ToBin(); | 40 | std::vector<char> ToBin() const; |
| 41 | 41 | ||
| 42 | virtual void Remove(Node* node) = 0; | 42 | virtual void Remove(Node* node) = 0; |
| 43 | 43 | ||
