can pybindgen handle void pointer
Hi,
I have the following method :
class Foo {
...
void* At(long Index);
...
}
I get:
exception TypeLookupError
How can I wrap this method? I know which object is hidden behind the void pointer. Do I have to use the CppClass.
The other way is also interesting for me:
bool setFoo(void*);
This gives:
exception TypeLookupError
My first quess to register multiple custum method wrapper for this method . For example;
bool setFoo(int*);
bool setFoo(double*);
...
Is this right?/possible?
Best
stefan
Question information
- Language:
- English Edit question
- Status:
- Answered
- For:
- PyBindGen Edit question
- Assignee:
- No assignee Edit question
- Last query:
- Last reply:
Can you help with this problem?
Provide an answer of your own, or ask Stefan Stiene for more information if necessary.