From 1f14105b2841dc73b1d459ba0b83e18785766ef8 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 19 Mar 2013 16:57:51 +0100 Subject: swig: added PLIST_UID support --- swig/plist.i | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/swig/plist.i b/swig/plist.i index f3166e3..3ae3d02 100644 --- a/swig/plist.i +++ b/swig/plist.i @@ -94,6 +94,9 @@ static swig_type_info *Node_dynamic(void **ptr) case PLIST_KEY: *ptr = dynamic_cast(node); return SWIGTYPE_p_PList__Key; + case PLIST_UID: + *ptr = dynamic_cast(node); + return SWIGTYPE_p_PList__Uid; case PLIST_STRING: *ptr = dynamic_cast(node); return SWIGTYPE_p_PList__String; @@ -144,6 +147,8 @@ namespace std { %ignore Boolean(plist_t); %ignore Integer(plist_t); %ignore Real(plist_t); +%ignore Key(plist_t); +%ignore Uid(plist_t); %ignore String(plist_t); %ignore Data(plist_t); %ignore Date(plist_t); @@ -158,6 +163,7 @@ namespace std { %include %include %include +%include %include %include %include @@ -175,6 +181,7 @@ typedef enum { PLIST_DATE, PLIST_DATA, PLIST_KEY, + PLIST_UID, PLIST_NONE } plist_type; -- cgit v1.1-32-gdbae