Hi,
I have a class with the following static method which can be used to
register a callback function "func":
static MCallbackId addEventCallback(const MString& event, void (*func)(
void* clientData ), void* clientData = NULL, MStatus* ReturnStatus = NULL);
Pyplusplus does not generate code for this one even so I did not exclude
it explicitly. Basically, this is ok as the function pointer wouldn't
work in Python anyway. The thing is just that I don't know *why* it was
excluded. Actually I did expect it to show up and that I had to remove
it manually (that's what I was about to do) but pyplusplus did something
different and I'd just like to know why.
So is this a "bug" that it doesn't show up in the generated code or is
there some built-in rule that removed it from the output?
- Matthias -
|