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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,e8fd9bf92374a60a X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!m73g2000hsh.googlegroups.com!not-for-mail From: alexander.kleppe@web.de Newsgroups: comp.lang.ada Subject: Re: Declaration of private type Containers Date: Wed, 4 Jun 2008 08:40:29 -0700 (PDT) Organization: http://groups.google.com Message-ID: <6b5a8c42-e86d-4e3d-8dd6-7cc5cf954768@m73g2000hsh.googlegroups.com> References: <6d6feee1-fe69-4d19-9745-4748d341a56e@r66g2000hsg.googlegroups.com> NNTP-Posting-Host: 217.230.196.144 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1212594030 25136 127.0.0.1 (4 Jun 2008 15:40:30 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 4 Jun 2008 15:40:30 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: m73g2000hsh.googlegroups.com; posting-host=217.230.196.144; posting-account=LGR_CwoAAAA-5VQ2IOOBlJKOPyfqw14F User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11,gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:570 Date: 2008-06-04T08:40:29-07:00 List-Id: this is really a nice and elegant solution to my problem. In particular because the former solution (list declaration in child package of A) don't work, when I have another type in the same package A which has such a list instance as one of its record components. With your solution, it works perfect and it is transparent to the user of the package. Thanks to all for the answers!