[pygccxml-development] Basic Py++ questions
Brought to you by:
mbaas,
roman_yakovenko
|
From: Paul M. <pa...@sc...> - 2008-10-28 13:28:38
|
Hello Roman,
Thanks for your help so far!
I have a few beginners questions w.r.t. Py++:
- When selecting a class with the class_() method how intelligent is the
matching? Does it do purely a string match on the argument you provide,
or does it actually parse the argument and go from there? I.e. I can
write for example class_('::mynamespace::C'), class_('mynamespace::C')
or class_('C'). Will these match different classes?
- I get warnings (W1005) during code generation about methods/functions
using instances of non-public classes, with the message that the
generated code will not compile :) Is there a way to automatically
disable generation of method wrappers that use non-public classes?
- Finally, if I .exclude() a certain class it seems that this doesn't
propagate into excluding all methods/functions using that class (related
to the previous question)?
Thanks in advance,
Paul
|