diff options
Diffstat (limited to 'include/plist/Date.h')
-rw-r--r-- | include/plist/Date.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/plist/Date.h b/include/plist/Date.h index 78d8601..e9645aa 100644 --- a/include/plist/Date.h +++ b/include/plist/Date.h @@ -32,9 +32,13 @@ class Date : public Node public : Date(); Date(plist_t node); + Date(Date& d); + Date& operator=(Date& d); Date(uint64_t i); virtual ~Date(); + Node* Clone(); + void SetValue(uint64_t i); uint64_t GetValue(); }; |