From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,b808976917d4e4d3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news.glorb.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Peter Amey Newsgroups: comp.lang.ada Subject: Re: Interfaces.C and use clause Date: Mon, 23 May 2005 15:43:38 +0100 Message-ID: <3fe8gsF7a37sU1@individual.net> References: <1116511104.203615.78160@g43g2000cwa.googlegroups.com> <1116515936.707901.21760@o13g2000cwo.googlegroups.com> <1116581365.139348.126170@g44g2000cwa.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: individual.net u9Z1l6ohgqKyQY7XVA/71gEVUnmeyH9Dncwp6Kt7ROnh1dGQ4= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-Accept-Language: en-us, en In-Reply-To: <1116581365.139348.126170@g44g2000cwa.googlegroups.com> Xref: g2news1.google.com comp.lang.ada:11124 Date: 2005-05-23T15:43:38+01:00 List-Id: ich_bin_elvis@hotmail.com wrote: > When I use : Use Interfaces.C; > [snip] > > for the use type win32.bool i made a shadow package... And this worked > fine. But when I remove the use clause for Interfaces.C I get that > operators +-= is not visible an that this could be solved with an use > clause.... is there another way. any examples > At the point where you "with" the win32 shadow package add "use type xxxx.bool;" (where xxxx is replaced with th ename of your shadow package). Use type make sall the operators visible but soen't have any of the less desirable effects of "use". Peter