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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b6d543b1cb62702 X-Google-Attributes: gid103376,public From: "Steve Folly" Subject: Re: package child question Date: 2000/02/08 Message-ID: <950043074.13382.0.nnrp-08.c2de848f@news.demon.co.uk>#1/1 X-Deja-AN: 583360281 X-NNTP-Posting-Host: follysplace.demon.co.uk:194.222.132.143 References: <87mugk$sa3$1@news-hrz.uni-duisburg.de> <87oi6t$jd$1@wanadoo.fr> X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 X-Complaints-To: abuse@demon.net X-Trace: news.demon.co.uk 950043074 nnrp-08:13382 NO-IDENT follysplace.demon.co.uk:194.222.132.143 X-MSMail-Priority: Normal Newsgroups: comp.lang.ada Date: 2000-02-08T00:00:00+00:00 List-Id: Jean-Pierre Rosen wrote, among other things, in message news:87oi6t$jd$1@wanadoo.fr... > > If you want to be absolutely, unambiguously sure of what you name, start > with Standard: > use Standard.A.B; > > (unless you have also redefined locally Standard, but that would *really* be > looking for trouble :-) > Just a minor point... as all packages are implicitly child packages of Standard, you don't actually have to with Standard - just the use clause will work. We had a problem like this with some code at work... package Icp_Button is ... end Icp_Button; package Icp_Button.Field is ... end Icp_Button.Field; package Field is ... end Field; Any reference to the package Field in Icp_Button.Field has to be qualified with Standard. OK, maybe the names of the packages were badly chosen, but we wont argue about that.... -- Regards, Steve Folly. http://www.follysplace.demon.co.uk donationsto:myaccount@mybank.co.uk