<br><font size=3><tt>Hello,<br>
<br>
I have read the &quot;Mapping for Union Types&quot; available on the omg
website <br>
</tt></font><a href=http://www.omg.org/spec/CPP/1.2/PDF/><font size=3 color=blue><tt><u>http://www.omg.org/spec/CPP/1.2/PDF/</u></tt></font></a><font size=3><tt><br>
(and honestly I'm not sure I understand it completly)<br>
<br>
Here's an IDL I have to use :<br>
<br>
 &nbsp;enum MyEnum<br>
 &nbsp;{<br>
 &nbsp; &nbsp;myEnum1,<br>
 &nbsp; &nbsp;myEnum2<br>
 &nbsp;};<br>
<br>
 &nbsp;union MyUnion switch(MyEnum)<br>
 &nbsp;{<br>
 &nbsp; &nbsp;case myEnum1: LightweightObject lightweight;<br>
 &nbsp; &nbsp;case myEnum2: FatObject fat;<br>
 &nbsp;};<br>
<br>
I don't have a control over it and I need to allocate a sequence of it
<br>
(possibly long).<br>
<br>
Basically, this is what I would like to write : (#1)<br>
 &nbsp;MyUnion &amp;union = seq[no]; // seq is a sequence of MyUnion<br>
 &nbsp;union._d(myEnum2); // oops, discriminant not initialized yet<br>
 &nbsp;FatObject &amp;fat = union.fat();<br>
 &nbsp;initializeFat(fat);<br>
<br>
But it does not work, the correct compliant way is : (#2)<br>
 &nbsp;MyUnion &amp;union = seq[no]; // seq is a sequence of MyUnion<br>
 &nbsp;FatObject fat;<br>
 &nbsp;initializeFat(fat);<br>
 &nbsp;union.fat(fat); // initialize discriminant and performs deep copy<br>
<br>
Is there any way to avoid the deep copy ? It can be costly if the sequence
<br>
is very long.<br>
Is there any good reason the spec disallow writing code #1 ?<br>
<br>
Looking at the code generated by omniidl, it would be completly possible
<br>
and safe to do it in the #1 way, but I would have to manually patch the
<br>
generated code to explictly allow it.<br>
Any thought about it ?<br>
<br>
Tx<br>
<br>
David<br>
</tt></font><pre>

This message and any attachments (the "message") is intended solely for 
the addressees and is confidential. If you receive this message in error, 
please delete it and immediately notify the sender. Any use not in accord 
with its purpose, any dissemination or disclosure, either whole or partial, 
is prohibited except formal approval. The internet can not guarantee the 
integrity of this message. BNP PARIBAS (and its subsidiaries) shall (will) 
not therefore be liable for the message if modified. Please note that certain 
functions and services for BNP Paribas may be performed by BNP Paribas RCC, Inc.</pre>