Hello,

I discovered boost.python not long ago and I really like how simple I can wrap my code.

I stumbled upon the following struct and don't know how to wrap it. Help is greatly appreciated.

struct someStruct
{
      union
      {
             float a;
             float b;
      };
}

Thank you very much,

Cheers,

Malte