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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/plist/Integer.h b/include/plist/Integer.h
index bdabc6f..1a4d980 100644
--- a/include/plist/Integer.h
+++ b/include/plist/Integer.h
@@ -35,12 +35,18 @@ public :
35 Integer(const Integer& i); 35 Integer(const Integer& i);
36 Integer& operator=(const Integer& i); 36 Integer& operator=(const Integer& i);
37 Integer(uint64_t i); 37 Integer(uint64_t i);
38 Integer(int64_t i);
38 virtual ~Integer(); 39 virtual ~Integer();
39 40
40 Node* Clone() const; 41 Node* Clone() const;
41 42
43 void SetValue(int64_t i);
42 void SetValue(uint64_t i); 44 void SetValue(uint64_t i);
43 uint64_t GetValue() const; 45 void SetUnsignedValue(uint64_t i);
46 int64_t GetValue() const;
47 uint64_t GetUnsignedValue() const;
48
49 bool isNegative() const;
44}; 50};
45 51
46}; 52};