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(). --- include/plist/Integer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/plist/Integer.h') diff --git a/include/plist/Integer.h b/include/plist/Integer.h index 86af0dd..adbc39a 100644 --- a/include/plist/Integer.h +++ b/include/plist/Integer.h @@ -32,15 +32,15 @@ class Integer : public Node public : Integer(Node* parent = NULL); Integer(plist_t node, Node* parent = NULL); - Integer(Integer& i); + Integer(const Integer& i); Integer& operator=(Integer& i); Integer(uint64_t i); virtual ~Integer(); - Node* Clone(); + Node* Clone() const; void SetValue(uint64_t i); - uint64_t GetValue(); + uint64_t GetValue() const; }; }; -- cgit v1.1-32-gdbae