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/Array.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Array.cpp') diff --git a/src/Array.cpp b/src/Array.cpp index a4ea02a..3036476 100644 --- a/src/Array.cpp +++ b/src/Array.cpp @@ -43,7 +43,7 @@ Array::Array(plist_t node, Node* parent) : Structure(parent) } } -Array::Array(PList::Array& a) : Structure() +Array::Array(const PList::Array& a) : Structure() { _array.clear(); _node = plist_copy(a.GetPlist()); @@ -85,7 +85,7 @@ Array::~Array() _array.clear(); } -Node* Array::Clone() +Node* Array::Clone() const { return new Array(*this); } -- cgit v1.1-32-gdbae