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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/plist/Integer.h b/include/plist/Integer.h
index 86af0dd..adbc39a 100644
--- a/include/plist/Integer.h
+++ b/include/plist/Integer.h
@@ -32,15 +32,15 @@ class Integer : public Node
32public : 32public :
33 Integer(Node* parent = NULL); 33 Integer(Node* parent = NULL);
34 Integer(plist_t node, Node* parent = NULL); 34 Integer(plist_t node, Node* parent = NULL);
35 Integer(Integer& i); 35 Integer(const Integer& i);
36 Integer& operator=(Integer& i); 36 Integer& operator=(Integer& i);
37 Integer(uint64_t i); 37 Integer(uint64_t i);
38 virtual ~Integer(); 38 virtual ~Integer();
39 39
40 Node* Clone(); 40 Node* Clone() const;
41 41
42 void SetValue(uint64_t i); 42 void SetValue(uint64_t i);
43 uint64_t GetValue(); 43 uint64_t GetValue() const;
44}; 44};
45 45
46}; 46};