summaryrefslogtreecommitdiffstats
path: root/src/Integer.cpp
diff options
context:
space:
mode:
authorGravatar Aaron Burghardt2014-08-15 21:59:01 -0400
committerGravatar Nikias Bassen2014-09-20 00:10:46 +0200
commitccd6f05fe1e6cd5a1611b0df78974fa39869013d (patch)
tree3c9e2c431d85cfb683de1724b121819aa16d29aa /src/Integer.cpp
parentbc147d80b5a608b8a0478041e5198093ecd767b8 (diff)
downloadlibplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.gz
libplist-ccd6f05fe1e6cd5a1611b0df78974fa39869013d.tar.bz2
Change Clone() to be const, which required constructors with const references and a const GetValue().
Diffstat (limited to 'src/Integer.cpp')
-rw-r--r--src/Integer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Integer.cpp b/src/Integer.cpp
index fed03f6..04315d7 100644
--- a/src/Integer.cpp
+++ b/src/Integer.cpp
@@ -32,7 +32,7 @@ Integer::Integer(plist_t node, Node* parent) : Node(node, parent)
32{ 32{
33} 33}
34 34
35Integer::Integer(PList::Integer& i) : Node(PLIST_UINT) 35Integer::Integer(const PList::Integer& i) : Node(PLIST_UINT)
36{ 36{
37 plist_set_uint_val(_node, i.GetValue()); 37 plist_set_uint_val(_node, i.GetValue());
38} 38}
@@ -53,7 +53,7 @@ Integer::~Integer()
53{ 53{
54} 54}
55 55
56Node* Integer::Clone() 56Node* Integer::Clone() const
57{ 57{
58 return new Integer(*this); 58 return new Integer(*this);
59} 59}
@@ -63,7 +63,7 @@ void Integer::SetValue(uint64_t i)
63 plist_set_uint_val(_node, i); 63 plist_set_uint_val(_node, i);
64} 64}
65 65
66uint64_t Integer::GetValue() 66uint64_t Integer::GetValue() const
67{ 67{
68 uint64_t i = 0; 68 uint64_t i = 0;
69 plist_get_uint_val(_node, &i); 69 plist_get_uint_val(_node, &i);