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/Uid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Uid.cpp') diff --git a/src/Uid.cpp b/src/Uid.cpp index 02a59b3..440dec4 100644 --- a/src/Uid.cpp +++ b/src/Uid.cpp @@ -32,7 +32,7 @@ Uid::Uid(plist_t node, Node* parent) : Node(node, parent) { } -Uid::Uid(PList::Uid& i) : Node(PLIST_UID) +Uid::Uid(const PList::Uid& i) : Node(PLIST_UID) { plist_set_uid_val(_node, i.GetValue()); } @@ -53,7 +53,7 @@ Uid::~Uid() { } -Node* Uid::Clone() +Node* Uid::Clone() const { return new Uid(*this); } @@ -63,7 +63,7 @@ void Uid::SetValue(uint64_t i) plist_set_uid_val(_node, i); } -uint64_t Uid::GetValue() +uint64_t Uid::GetValue() const { uint64_t i = 0; plist_get_uid_val(_node, &i); -- cgit v1.1-32-gdbae