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.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!ucbvax!SNOW-WHITE.MERIT-TECH.COM!jay From: jay@SNOW-WHITE.MERIT-TECH.COM (Jay Labhart) Newsgroups: comp.lang.ada Subject: RE: Generics Question Message-ID: <8909192303.AA14796@snow-white.merit-tech.com> Date: 19 Sep 89 23:03:23 GMT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet List-Id: Hello, I am working on a project trying to utilize the generics portion of Ada. Here is my problem. I need to have the user instantiate a package from his procedure which inturn instantiates many more packages using the users inputed type. Here a sample generic type x is (<>); package foo is procedure start_it ( s : x); end foo; package body foo is procedure start_it **** *** here is where I would like to instaniate more packages end foo; I am trying to allow a tool to accept different types within Ada, rather than utilizing only integer, float... Your help is greatly appreciated Jay Labhart jay@snow-white.merit-tech.com