diff options
| author | 2014-08-15 21:59:01 -0400 | |
|---|---|---|
| committer | 2014-09-20 00:10:46 +0200 | |
| commit | ccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch) | |
| tree | 3c9e2c431d85cfb683de1724b121819aa16d29aa /include/plist/Date.h | |
| parent | bc147d80b5a608b8a0478041e5198093ecd767b8 (diff) | |
| download | libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.gz libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.bz2 | |
Change Clone() to be const, which required constructors with const references and a const GetValue().
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 | |||
| 34 | public : | 34 | public : |
| 35 | Date(Node* parent = NULL); | 35 | Date(Node* parent = NULL); |
| 36 | Date(plist_t node, Node* parent = NULL); | 36 | Date(plist_t node, Node* parent = NULL); |
| 37 | Date(Date& d); | 37 | Date(const Date& d); |
| 38 | Date& operator=(Date& d); | 38 | Date& operator=(Date& d); |
| 39 | Date(timeval t); | 39 | Date(timeval t); |
| 40 | virtual ~Date(); | 40 | virtual ~Date(); |
| 41 | 41 | ||
| 42 | Node* Clone(); | 42 | Node* Clone() const; |
| 43 | 43 | ||
| 44 | void SetValue(timeval t); | 44 | void SetValue(timeval t); |
| 45 | timeval GetValue(); | 45 | timeval GetValue() const; |
| 46 | }; | 46 | }; |
| 47 | 47 | ||
| 48 | }; | 48 | }; |
