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=0.6 required=5.0 tests=BAYES_00,FROM_WORDY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,571930b4ff0bc1ee X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-05 17:34:09 PST Path: supernews.google.com!sn-xit-02!sn-xit-04!supernews.com!europa.netcrusader.net!205.252.116.205!howland.erols.net!newscon04-ext.news.prodigy.com.MISMATCH!newscon04.news.prodigy.com!prodigy.com!newsmst01!postmaster.news.prodigy.com!newssvr16.news.prodigy.com.POSTED!not-for-mail From: "Ken Garlington" Newsgroups: comp.lang.ada References: <3AC03CCE.70E3C2D5@mida.se> <3AC18DD1.EF25CE42@mida.se> <5mzw6.415$1H6.72722473@newssvr16.news.prodigy.com> <3AC2EB17.33AAEC0A@mida.se> <3ACAD197.FB2C3303@mida.se> Subject: Re: Compile time executed functions Organization: ex-FlashNet, now Prodigy X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Message-ID: NNTP-Posting-Host: 65.67.103.9 X-Complaints-To: abuse@prodigy.net X-Trace: newssvr16.news.prodigy.com 986517218 6207069 65.67.103.9 (Thu, 05 Apr 2001 20:33:38 EDT) NNTP-Posting-Date: Thu, 05 Apr 2001 20:33:38 EDT Date: Fri, 06 Apr 2001 00:33:38 GMT Xref: supernews.google.com comp.lang.ada:6538 Date: 2001-04-06T00:33:38+00:00 List-Id: "Mats Karlssohn" wrote in message news:3ACAD197.FB2C3303@mida.se... : But this actually gives me an idea, my data table could be separate, : right ? That would render the output from the tool so small that I : actually could generate the whole source file, so that no handediting : is needed. I'll need to investigate this. This is exactly how we do it - when we have this situation, we try to put the auto-generated info (and *only( the auto-generated info) in a separate package. This allows us to do updates with minimal impact to the rest of the system. We do this in Ada83; you might want to look at some of the packaging options (e.g. child packages) to make it even more convienient.