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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,aa85b7e82b398299 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-15 17:23:44 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!fu-berlin.de!uni-berlin.de!ppp-1-25.cvx1.telinco.NET!not-for-mail From: "Nick Roberts" Newsgroups: comp.lang.ada Subject: Re: generic package with configuration paramenter Date: Fri, 16 Nov 2001 00:59:03 -0000 Message-ID: <9t1pqt$15aum9$1@ID-25716.news.dfncis.de> References: <8cffca5.0111130105.366e0491@posting.google.com> NNTP-Posting-Host: ppp-1-25.cvx1.telinco.net (212.1.136.25) X-Trace: fu-berlin.de 1005873822 39156425 212.1.136.25 (16 [25716]) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Xref: archiver1.google.com comp.lang.ada:16603 Date: 2001-11-16T00:59:03+00:00 List-Id: package L is type T_MODE is (FIFO, LIFO); end L; with L; generic type T_ITEM is private; MODE : L.T_MODE; package LIST is ... end LIST;