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/Date.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Date.cpp') diff --git a/src/Date.cpp b/src/Date.cpp index 2430184..4b5e0a1 100644 --- a/src/Date.cpp +++ b/src/Date.cpp @@ -32,7 +32,7 @@ Date::Date(plist_t node, Node* parent) : Node(node, parent) { } -Date::Date(PList::Date& d) : Node(PLIST_DATE) +Date::Date(const PList::Date& d) : Node(PLIST_DATE) { timeval t = d.GetValue(); plist_set_date_val(_node, t.tv_sec, t.tv_usec); @@ -54,7 +54,7 @@ Date::~Date() { } -Node* Date::Clone() +Node* Date::Clone() const { return new Date(*this); } @@ -64,7 +64,7 @@ void Date::SetValue(timeval t) plist_set_date_val(_node, t.tv_sec, t.tv_usec); } -timeval Date::GetValue() +timeval Date::GetValue() const { int32_t tv_sec = 0; int32_t tv_usec = 0; -- cgit v1.1-32-gdbae