Tom Schindl <[EMAIL PROTECTED]> writes: >Hi, > >I'm fairly new to XS and have no idea how I could derive from another >module which is bound to perl via XS. > >e.g. I've XML::LibXSLT(XS-Binding to libxslt) and want derive from it >XML::LibXSLT::Enhanced which adds new attributes. > >Is this possible, using XS or even pure perl?
If you call you XS subs as methods then normnal perl way of deriving classes works fine. You need to have been flexible in your typemap that converts $_[0] to "self" object. > >Tom