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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6ff9a187ce31425c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-19 07:54:53 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: gautier_niouzes@hotmail.com (Gautier) Newsgroups: comp.lang.ada Subject: Re: Completion error Date: 19 Oct 2002 07:54:52 -0700 Organization: http://groups.google.com/ Message-ID: <17cd177c.0210190654.1f1d3004@posting.google.com> References: NNTP-Posting-Host: 80.218.95.120 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1035039293 5685 127.0.0.1 (19 Oct 2002 14:54:53 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 19 Oct 2002 14:54:53 GMT Xref: archiver1.google.com comp.lang.ada:29945 Date: 2002-10-19T14:54:53+00:00 List-Id: > Hi , what means this : > > services.ads: Error: line 7 col 6 LRM:3.10.1(3), Completion required for > incomplete type 'reservation', Continuing If you want to make the contents of the type 'reservation' not direclty referenceable by the user, you have to make it a private type and describe it in the "private" part of the package 'Services': package Services is type reservation is private; type louer is access reservation; private type auto is (econo,polluting); type reservation is record num : natural := 0; plancher : integer := 20; plafond : integer := 20; classe : auto := econo; nomclient : string(1..256); end record; end Services; HTH ________________________________________________________ Gautier -- http://www.mysunrise.ch/users/gdm/gsoft.htm NB: For a direct answer, address on the Web site!