diff options
Diffstat (limited to 'include/plist/Date.h')
-rw-r--r-- | include/plist/Date.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Date.h b/include/plist/Date.h index e505b53..510a349 100644 --- a/include/plist/Date.h +++ b/include/plist/Date.h @@ -34,15 +34,15 @@ class Date : public Node public : Date(Node* parent = NULL); Date(plist_t node, Node* parent = NULL); - Date(Date& d); + Date(const Date& d); Date& operator=(Date& d); Date(timeval t); virtual ~Date(); - Node* Clone(); + Node* Clone() const; void SetValue(timeval t); - timeval GetValue(); + timeval GetValue() const; }; }; |