summaryrefslogtreecommitdiffstats
path: root/src/Node.cpp
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2023-01-16 04:25:52 +0100
committerGravatar Nikias Bassen2023-01-16 04:25:52 +0100
commitd886885b0ec2506fa2caf0986a3d0e496fea91c2 (patch)
tree58bc4bcd1963ea885abd60a65bf87a2685526714 /src/Node.cpp
parent47a7fbe438ee7350a2b151e007f07043ef596775 (diff)
downloadlibplist-d886885b0ec2506fa2caf0986a3d0e496fea91c2.tar.gz
libplist-d886885b0ec2506fa2caf0986a3d0e496fea91c2.tar.bz2
Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()
This properly supports getting and setting signed or unsigned integer values. Also, a new helper function plist_int_val_is_negative() was added to determine if a given #PLIST_INT node has a negative value or not. The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for backwards compatibility. This commit also adds int vs. uint support to the C++ interface, and the python bindings in a hopefully useful way.
Diffstat (limited to 'src/Node.cpp')
-rw-r--r--src/Node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Node.cpp b/src/Node.cpp
index fb79911..08a91b0 100644
--- a/src/Node.cpp
+++ b/src/Node.cpp
@@ -52,7 +52,7 @@ Node::Node(plist_type type, Node* parent) : _parent(parent)
52 case PLIST_BOOLEAN: 52 case PLIST_BOOLEAN:
53 _node = plist_new_bool(0); 53 _node = plist_new_bool(0);
54 break; 54 break;
55 case PLIST_UINT: 55 case PLIST_INT:
56 _node = plist_new_uint(0); 56 _node = plist_new_uint(0);
57 break; 57 break;
58 case PLIST_REAL: 58 case PLIST_REAL:
@@ -134,7 +134,7 @@ Node* Node::FromPlist(plist_t node, Node* parent)
134 case PLIST_BOOLEAN: 134 case PLIST_BOOLEAN:
135 ret = new Boolean(node, parent); 135 ret = new Boolean(node, parent);
136 break; 136 break;
137 case PLIST_UINT: 137 case PLIST_INT:
138 ret = new Integer(node, parent); 138 ret = new Integer(node, parent);
139 break; 139 break;
140 case PLIST_REAL: 140 case PLIST_REAL: