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-Thread: 103376,36b39757d8f8763e X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.73.229 with SMTP id o5mr10308046pbv.7.1324083472884; Fri, 16 Dec 2011 16:57:52 -0800 (PST) Path: lh20ni31025pbb.0!nntp.google.com!news2.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post02.iad.highwinds-media.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Does OpenToken support Unicode References: <2652647e-ef0a-4440-b127-4ddc59620707@4g2000yqu.googlegroups.com> Date: Fri, 16 Dec 2011 19:58:22 -0500 Message-ID: <82vcpgf1zl.fsf@stephe-leake.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (windows-nt) Cancel-Lock: sha1:QMFmjOVrp/AD00/WUNQrgPb3Z/E= MIME-Version: 1.0 X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: 92cf74eebe910e029e66132071 Content-Type: text/plain; charset=us-ascii Date: 2011-12-16T19:58:22-05:00 List-Id: mtrenkmann writes: > For example, can it somehow be made possible that > > procedure OpenToken.Recognizer.Analyze > (The_Token : in out Instance; > Next_Char : in Character; > Verdict : out Analysis_Verdict) is abstract; > > does support Wide_Wide_Character for the Next_Char parameter? Copy the package, add _Wide_Wide to the name, change all occurences of Character to Wide_Wide_Character, and compile. It will probably fail, so iterate until you've modified all the necessary packages. If you are ambitious, instead of copy and edit, change them into generics on the character type. -- -- Stephe