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