summaryrefslogtreecommitdiffstats
path: root/cython/plist.pxd
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2013-03-19 17:24:25 +0100
committerGravatar Nikias Bassen2013-03-19 17:24:25 +0100
commit1b12d348f7efd0a5a1ead163a68111b1def98e8d (patch)
tree6ad7ad4f5e20e79d72568d1bd1fc3db0c79c67a4 /cython/plist.pxd
parentef7347435a77a97444e61a52ce9305c3924d2df6 (diff)
downloadlibplist-1b12d348f7efd0a5a1ead163a68111b1def98e8d.tar.gz
libplist-1b12d348f7efd0a5a1ead163a68111b1def98e8d.tar.bz2
cython: added PLIST_UID support
Diffstat (limited to 'cython/plist.pxd')
-rw-r--r--cython/plist.pxd4
1 files changed, 4 insertions, 0 deletions
diff --git a/cython/plist.pxd b/cython/plist.pxd
index c504599..ee8a65e 100644
--- a/cython/plist.pxd
+++ b/cython/plist.pxd
@@ -21,6 +21,10 @@ cdef class Integer(Node):
cpdef set_value(self, object value)
cpdef uint64_t get_value(self)
+cdef class Uid(Node):
+ cpdef set_value(self, object value)
+ cpdef uint64_t get_value(self)
+
cdef class Key(Node):
cpdef set_value(self, object value)
cpdef unicode get_value(self)