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,3d9acd0750841603 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!v61g2000cwv.googlegroups.com!not-for-mail From: "Gerd" Newsgroups: comp.lang.ada Subject: Re: How to hide type internals Date: 4 Jul 2006 04:13:43 -0700 Organization: http://groups.google.com Message-ID: <1152011623.663140.82010@v61g2000cwv.googlegroups.com> References: <1151664636.528401.15590@d56g2000cwd.googlegroups.com> <1151666351.044613.327270@x69g2000cwx.googlegroups.com> NNTP-Posting-Host: 62.159.113.204 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1152011628 31450 127.0.0.1 (4 Jul 2006 11:13:48 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 4 Jul 2006 11:13:48 +0000 (UTC) In-Reply-To: <1151666351.044613.327270@x69g2000cwx.googlegroups.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: v61g2000cwv.googlegroups.com; posting-host=62.159.113.204; posting-account=_FaVAg0AAAAYUPoPAQYNRFF35JBHf9i7 Xref: g2news2.google.com comp.lang.ada:5473 Date: 2006-07-04T04:13:43-07:00 List-Id: claude.simon@equipement.gouv.fr schrieb: > Gerd a =E9crit : > > > Hi, > > > > package Keys is > type Key is private; > function Getkey return Key; > -- ... > private > type Imp_Key; -- deferred type to the body > type Key is access Imp_Key; > end Keys; =20 Thanks, this is exacly what I was looking for.