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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,878cc452376823e0 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!feeder.news-service.com!news.motzarella.org!motzarella.org!not-for-mail From: =?ISO-8859-1?Q?S=E9bastien?= Newsgroups: comp.lang.ada Subject: Re: Generic body Date: Thu, 15 May 2008 13:11:15 +0000 Organization: A noiseless patient Spider Message-ID: <482C3673.8030502@gmail.com> References: <1305764a-2bae-4fd9-b2b6-ee24fd94682a@f36g2000hsa.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: feeder.motzarella.org U2FsdGVkX1/CwDuqdKgFRkw3aKej5Wxgxxo0CyrhmGznCUEyqJFtRNZE9KAN9ftkU5g9//9yyPMqyPvdPoXnClxwuAf1dHpyafLkoNsLIUkud+Wm0ph8vYWYikVbpJspL8W5VCHmGnnRa4kAhy6ZdA== X-Complaints-To: Please send complaints to abuse@motzarella.org with full headers NNTP-Posting-Date: Thu, 15 May 2008 13:09:15 +0000 (UTC) In-Reply-To: X-Auth-Sender: U2FsdGVkX18bnRXWBGvkZm4ZNEZp2JZNcs8HZy4IWAhx/nLx7uxccw== Cancel-Lock: sha1:ALSPMKngv2U9Q5rxu9YL/gCQ+YU= User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) Xref: g2news1.google.com comp.lang.ada:74 Date: 2008-05-15T13:11:15+00:00 List-Id: > package MyPack is > > generic > type Toto is limited private; > procedure MyProc; > > procedure MyProcInt; > procedure MyProcChr; > > end MyPack; > > package body MyPack is > > procedure MyProc is > begin > null; -- Some stuff > end MyProc; > > procedure MyProcInt_internal is new MyProc(Toto => Integer); > procedure MyProcChr_internal is new MyProc(Toto => Character); > > procedure MyProcInt renames MyProcInt_internal; > procedure MyProcChr renames MyProcChr_internal; > > end MyPack; Really nice solutions, thanks very much.