From ccd6f05fe1e6cd5a1611b0df78974fa39869013d Mon Sep 17 00:00:00 2001 From: Aaron Burghardt Date: Fri, 15 Aug 2014 21:59:01 -0400 Subject: Change Clone() to be const, which required constructors with const references and a const GetValue(). --- src/Key.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Key.cpp') diff --git a/src/Key.cpp b/src/Key.cpp index 4145f05..e3ccbe6 100644 --- a/src/Key.cpp +++ b/src/Key.cpp @@ -32,7 +32,7 @@ Key::Key(plist_t node, Node* parent) : Node(node, parent) { } -Key::Key(PList::Key& k) : Node(PLIST_UINT) +Key::Key(const PList::Key& k) : Node(PLIST_UINT) { plist_set_key_val(_node, k.GetValue().c_str()); } @@ -53,7 +53,7 @@ Key::~Key() { } -Node* Key::Clone() +Node* Key::Clone() const { return new Key(*this); } @@ -63,7 +63,7 @@ void Key::SetValue(const std::string& s) plist_set_key_val(_node, s.c_str()); } -std::string Key::GetValue() +std::string Key::GetValue() const { char* s = NULL; plist_get_key_val(_node, &s); -- cgit v1.1-32-gdbae