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,8a3c8cd30209f45b X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-03 04:21:32 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!cyclone.bc.net!news-hog.berkeley.edu!ucberkeley!enews.sgi.com!Q.T.Honey!onodera-news!azuki.org!passion.nalgo.co.jp!news-out.spamkiller.net!propagator2-la!propagator-la!news-in-la.newsfeeds.com!news-in.superfeed.net!news.cesnet.cz!crax.cesnet.cz!news.felk.cvut.cz!not-for-mail From: Tomas Hlavaty Newsgroups: comp.lang.ada Subject: Re: List of strings as an argument of a RCI function? Date: Fri, 03 May 2002 13:14:01 +0200 Organization: Czech Technical University Message-ID: <3CD270F9.92894233@labe.felk.cvut.cz> References: <3CD141D6.C6E6D8D@labe.felk.cvut.cz> NNTP-Posting-Host: bela.felk.cvut.cz Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ns.felk.cvut.cz 1020424145 67631 147.32.85.107 (3 May 2002 11:09:05 GMT) X-Complaints-To: usenet@ns.felk.cvut.cz NNTP-Posting-Date: Fri, 3 May 2002 11:09:05 +0000 (UTC) X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.18-rtl i686) X-Accept-Language: cs, en Xref: archiver1.google.com comp.lang.ada:23486 Date: 2002-05-03T13:14:01+02:00 List-Id: Pascal Obry wrote: > > Tomas Hlavaty writes: > > > I'm trying to define a RCI function with an output argument of my type > > List_Of_Strings. But, there is a problem with the unit categorization, > > because all useful string packages (as Ada.Strings.Unbounded) has no > > categorization. Could anybody suggest me a solution? Should I define my > > own string type? > > Yes use an access to string type. Then you'll have to provide you're own > read/write rountine to serialize the list and rebuild it at the other side. > I could dig out a simple distributed list of strings implementation if you > want. Could you? Thanks. I have my own list implementation and it works except with the access to (String?) type. There might be the problem. Tomas