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,e55245590c829bef X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,UTF8 Path: g2news1.google.com!news3.google.com!proxad.net!feeder1-2.proxad.net!newsfeed.straub-nv.de!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Beginners question: Compound types, how-to? Date: Mon, 01 Nov 2010 21:31:01 +0000 Organization: A noiseless patient Spider Message-ID: References: <86wroy58ff.fsf@gareth.avalon.lan> <86pqup5xfy.fsf@gareth.avalon.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: mx03.eternal-september.org; posting-host="dFCm8HWntFqmDIilBLqEJQ"; logging-data="32494"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/izk2syBsIpujU8rBDlkgLAFCdqEBLwAw=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (darwin) Cancel-Lock: sha1:x3Uxk345gthmjW8/2efs01QB7Vw= sha1:0zpxKN2VlwRcQbnQ8zQgEc/RLc0= Xref: g2news1.google.com comp.lang.ada:15132 Date: 2010-11-01T21:31:01+00:00 List-Id: "Yannick DuchĂȘne (Hibou57)" writes: > By the way, this make me think about a question : when a child package > does not formally requires a view on its parent, is it to be > considered a design error ? This may occurs. Well, there needs to be _some_ reason! It's not uncommon to have a top-level package with no functionality other than to provide a separate namespace. For example, -- This is the parent package for a library of useful units provided -- with GNAT package GNAT is pragma Pure; end GNAT;