diff options
author | Aaron Burghardt | 2014-08-15 21:59:01 -0400 |
---|---|---|
committer | Nikias Bassen | 2014-09-20 00:10:46 +0200 |
commit | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch) | |
tree | 3c9e2c431d85cfb683de1724b121819aa16d29aa /src/Boolean.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/Boolean.cpp')
-rw-r--r-- | src/Boolean.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Boolean.cpp b/src/Boolean.cpp index e58472f..4608eaf 100644 --- a/src/Boolean.cpp +++ b/src/Boolean.cpp @@ -32,7 +32,7 @@ Boolean::Boolean(plist_t node, Node* parent) : Node(node, parent) { } -Boolean::Boolean(PList::Boolean& b) : Node(PLIST_BOOLEAN) +Boolean::Boolean(const PList::Boolean& b) : Node(PLIST_BOOLEAN) { plist_set_bool_val(_node, b.GetValue()); } @@ -53,7 +53,7 @@ Boolean::~Boolean() { } -Node* Boolean::Clone() +Node* Boolean::Clone() const { return new Boolean(*this); } @@ -63,7 +63,7 @@ void Boolean::SetValue(bool b) plist_set_bool_val(_node, b); } -bool Boolean::GetValue() +bool Boolean::GetValue() const { uint8_t b = 0; plist_get_bool_val(_node, &b); |