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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,555115ba813101ad X-Google-Attributes: gid103376,public From: Robert A Duff Subject: Re: Finalization of package instance Date: 2000/01/18 Message-ID: #1/1 X-Deja-AN: 574314644 Sender: bobduff@world.std.com (Robert A Duff) References: Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 2000-01-18T00:00:00+00:00 List-Id: Mario Amado Alves writes: > How do I define the finalization of an instantiation of a generic package? Declare a controlled type, and put a single of object of the type in the package body. The finalization of this object can do whatever package finalization you want to do. - Bob