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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9406c9586288fd40 X-Google-Attributes: gid103376,public From: Stephen Leake Subject: Re: Data Structures of limited private types Date: 1998/08/26 Message-ID: #1/1 X-Deja-AN: 385058820 References: <6s1d17$i19$1@nnrp1.dejanews.com> Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA Newsgroups: comp.lang.ada Date: 1998-08-26T00:00:00+00:00 List-Id: rajagopalasrinivasan@my-dejanews.com writes: > folks > > I have a need to build a stack / linked_list of "Text_Io.File_Type"s. This > being a limited private type, I am not able to perform "assignments" of a > variable of this type. > > Can anyone give me some pointers or an example of how this can be done? Use a stack/list of Ada.Text_IO.File_Access. -- Stephe