diff options
| author | 2014-08-15 21:59:01 -0400 | |
|---|---|---|
| committer | 2014-09-20 00:10:46 +0200 | |
| commit | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch) | |
| tree | 3c9e2c431d85cfb683de1724b121819aa16d29aa /src/Node.cpp | |
| parent | bc147d80b5a608b8a0478041e5198093ecd767b8 (diff) | |
| download | libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.gz libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.bz2 | |
Change Clone() to be const, which required constructors with const references and a const GetValue().
Diffstat (limited to 'src/Node.cpp')
| -rw-r--r-- | src/Node.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Node.cpp b/src/Node.cpp index 516d1ae..aaadd52 100644 --- a/src/Node.cpp +++ b/src/Node.cpp | |||
| @@ -93,7 +93,7 @@ Node::~Node() | |||
| 93 | _parent = NULL; | 93 | _parent = NULL; |
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | plist_type Node::GetType() | 96 | plist_type Node::GetType() const |
| 97 | { | 97 | { |
| 98 | if (_node) | 98 | if (_node) |
| 99 | { | 99 | { |
| @@ -102,12 +102,12 @@ plist_type Node::GetType() | |||
| 102 | return PLIST_NONE; | 102 | return PLIST_NONE; |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | plist_t Node::GetPlist() | 105 | plist_t Node::GetPlist() const |
| 106 | { | 106 | { |
| 107 | return _node; | 107 | return _node; |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | Node* Node::GetParent() | 110 | Node* Node::GetParent() const |
| 111 | { | 111 | { |
| 112 | return _parent; | 112 | return _parent; |
| 113 | } | 113 | } |
