in reply to Re: XS typemap and C++ multiple inheritance
in thread XS typemap and C++ multiple inheritance
I really don't see how. Except if the void* that I put
in my T_X_PTR would be a little encapsualted C Struct like:
enum MyType {D1_TYPE, B1_TYPE, B2_TYPE, D2_TYPE};
struct XS_TypeInfo
{
void* info;
enum MyType trueType;
};
But even with that means that I would have to rewrite my typemap. and to hard-code in it the decoding of the void* info depending on trueType.
TIA,
~Xavier
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: XS typemap and C++ multiple inheritance
by John M. Dlugosz (Monsignor) on Aug 06, 2001 at 18:02 UTC | |
by FrenchZ (Initiate) on Aug 06, 2001 at 18:19 UTC | |
by John M. Dlugosz (Monsignor) on Aug 06, 2001 at 22:44 UTC | |
by FrenchZ (Initiate) on Aug 08, 2001 at 11:21 UTC |