diff options
author | 2013-03-18 01:54:46 +0100 | |
---|---|---|
committer | 2013-03-18 01:54:46 +0100 | |
commit | 80b5e50a7b6f23093e46020975c63de62e13b569 (patch) | |
tree | b5ec1ec5798470d3141264a7d424017a5c24ab53 /cython/plist.pxd | |
parent | aea4cf6cad522946018c6df85a01dfa6c5dfde60 (diff) | |
download | libplist-80b5e50a7b6f23093e46020975c63de62e13b569.tar.gz libplist-80b5e50a7b6f23093e46020975c63de62e13b569.tar.bz2 |
added PLIST_KEY support to cython bindings
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 a31419d..05f3e16 100644 --- a/cython/plist.pxd +++ b/cython/plist.pxd @@ -19,6 +19,10 @@ cdef class Integer(Node): cpdef set_value(self, object value) cpdef int get_value(self) +cdef class Key(Node): + cpdef set_value(self, object value) + cpdef int get_value(self) + cdef class Real(Node): cpdef set_value(self, object value) cpdef float get_value(self) |