diff options
author | Nikias Bassen | 2013-03-19 17:24:25 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-03-19 17:24:25 +0100 |
commit | 1b12d348f7efd0a5a1ead163a68111b1def98e8d (patch) | |
tree | 6ad7ad4f5e20e79d72568d1bd1fc3db0c79c67a4 /cython/plist.pxd | |
parent | ef7347435a77a97444e61a52ce9305c3924d2df6 (diff) | |
download | libplist-1b12d348f7efd0a5a1ead163a68111b1def98e8d.tar.gz libplist-1b12d348f7efd0a5a1ead163a68111b1def98e8d.tar.bz2 |
cython: added PLIST_UID support
Diffstat (limited to 'cython/plist.pxd')
-rw-r--r-- | cython/plist.pxd | 4 |
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) |