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.4 required=5.0 tests=AC_FROM_MANY_DOTS,BAYES_00 autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b74ec64483660e21 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-24 06:37:43 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!psinet-eu-nl!psiuk-p4!uknet!psiuk-n!news.pace.co.uk!nh.pace.co.uk!not-for-mail From: "Marin David Condic" Newsgroups: comp.lang.ada Subject: Re: When to use 'Class in a parameter list Date: Tue, 24 Jul 2001 08:52:56 -0400 Organization: Posted on a server owned by Pace Micro Technology plc Message-ID: <9jjr39$o3l$1@nh.pace.co.uk> References: <9ji1b3$4pi$1@nh.pace.co.uk> <3B5CDBCA.5810@li.net> NNTP-Posting-Host: 136.170.200.133 X-Trace: nh.pace.co.uk 995979177 24693 136.170.200.133 (24 Jul 2001 12:52:57 GMT) X-Complaints-To: newsmaster@pace.co.uk NNTP-Posting-Date: 24 Jul 2001 12:52:57 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Xref: archiver1.google.com comp.lang.ada:10511 Date: 2001-07-24T12:52:57+00:00 List-Id: O.K. I think I've got my brain straight about that - maybe the type conversion that I thought I needed only needed to occur within the child package in order to force a call back to its parent routine. (Resolving an otherwise ambiguous call.) But that still leaves me a bit confused about when I want to make a parameter of 'Class. MDC -- Marin David Condic Senior Software Engineer Pace Micro Technology Americas www.pacemicro.com Enabling the digital revolution e-Mail: marin.condic@pacemicro.com Web: http://www.mcondic.com/ "Vincent Marciante" wrote in message news:3B5CDBCA.5810@li.net... > > Assuming that Op is defined as a primative of Base_Type then > a procedure > > procedure Op (Base : in out Child_Type) ; > > automaticaly exists as a consequence of having derived > Child_Type from Base_Type. > > This is the case for all derived types and has nothing > to do with the taggedness of the types in question.