[Orbit-python-list] How to use IDL unions with orbit-python?
Status: Inactive
Brought to you by:
tack
From: <ml...@kn...> - 2002-01-23 23:25:07
|
Hi, I'm new to Orbit-Python (and new to Orbit and new to Python), so my question may be a frequently asked one. I have sth. like that: module M { struct S { enum E1 { A, B } e; }; union U switch (enum E2 { A, B }) { case A: ...; case B: ...; }; ... }; How can I access A and B in client and server code in both cases? I tried different variants like M.A and M.U.A, but didn't succeed. Thanks in advance! |