On Thursday 17 May 2007 3:15 pm, Jason Hihn wrote: > I have a class I am trying to wrap, aaa, it is derived from bbb. Bbb has > its own .h and .sip files. How do I properly get bbb into aaa's sip file so > that it is defined? I tried a %include, but then it errors on line 1 of > bbb.h, because it is #ifndef .
In aaa.sip have... %Include bbb.sip However the normal convention is to have a mod.sip file which %Includes each of the class .sip files. Then run sip over the mod.sip file. Phil _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
