summaryrefslogtreecommitdiffstats
path: root/include/plist/Integer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/Integer.h')
-rw-r--r--include/plist/Integer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/plist/Integer.h b/include/plist/Integer.h
index 823e3a0..3a3a0e3 100644
--- a/include/plist/Integer.h
+++ b/include/plist/Integer.h
@@ -32,9 +32,13 @@ class Integer : public Node
32 public : 32 public :
33 Integer(); 33 Integer();
34 Integer(plist_t node); 34 Integer(plist_t node);
35 Integer(Integer& i);
36 Integer& operator=(Integer& i);
35 Integer(uint64_t i); 37 Integer(uint64_t i);
36 virtual ~Integer(); 38 virtual ~Integer();
37 39
40 Node* Clone();
41
38 void SetValue(uint64_t i); 42 void SetValue(uint64_t i);
39 uint64_t GetValue(); 43 uint64_t GetValue();
40}; 44};