summaryrefslogtreecommitdiffstats
path: root/include/plist/Date.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Date.h')
-rw-r--r--include/plist/Date.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Date.h b/include/plist/Date.h
index 5113cf3..7026699 100644
--- a/include/plist/Date.h
+++ b/include/plist/Date.h
@@ -40,13 +40,13 @@ public :
40 Date(plist_t node, Node* parent = NULL); 40 Date(plist_t node, Node* parent = NULL);
41 Date(const Date& d); 41 Date(const Date& d);
42 Date& operator=(const Date& d); 42 Date& operator=(const Date& d);
43 Date(timeval t); 43 Date(int64_t t);
44 virtual ~Date(); 44 virtual ~Date();
45 45
46 Node* Clone() const; 46 Node* Clone() const;
47 47
48 void SetValue(timeval t); 48 void SetValue(int64_t t);
49 timeval GetValue() const; 49 int64_t GetValue() const;
50}; 50};
51 51
52}; 52};