From aea4cf6cad522946018c6df85a01dfa6c5dfde60 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 18 Mar 2013 01:54:23 +0100 Subject: added PLIST_KEY support to swig bindings --- swig/plist.i | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/swig/plist.i b/swig/plist.i index 7755cc5..f3166e3 100644 --- a/swig/plist.i +++ b/swig/plist.i @@ -91,6 +91,9 @@ static swig_type_info *Node_dynamic(void **ptr) case PLIST_REAL: *ptr = dynamic_cast(node); return SWIGTYPE_p_PList__Real; + case PLIST_KEY: + *ptr = dynamic_cast(node); + return SWIGTYPE_p_PList__Key; case PLIST_STRING: *ptr = dynamic_cast(node); return SWIGTYPE_p_PList__String; @@ -154,6 +157,7 @@ namespace std { %include %include %include +%include %include %include %include -- cgit v1.1-32-gdbae