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-Thread: 103376,1ec5fd4a21150c1,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Stefan Merwitz Newsgroups: comp.lang.ada Subject: Access types to records containing strings Date: Sat, 29 Jan 2005 09:58:55 +0100 Message-ID: <3611gpF4qnb9hU1@individual.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: individual.net BYLwiqOWasBpNKGVcaoPKQUoSJWtqrmAIWjmKhtjJJOWvzHpea User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en Xref: g2news1.google.com comp.lang.ada:8060 Date: 2005-01-29T09:58:55+01:00 List-Id: Hello everybody, it's me again. I need to implement a list containing strings using access types. Is there a way to implement this using variable length strings: private type list; private type listobject is record sContent: string(1..30); Next := list; end record; private type list is access listobject; With the knowledge I have till now, I think it's only possible with fixed length strings. Am I right or is there any other way? Thanks in advance, Stefan