------------------------------------------------------------------------------ -- -- -- GNATSTUB COMPONENTS -- -- -- -- G N A T S T U B . S A M P L E R -- -- -- -- S p e c -- -- -- -- -- -- Copyright (c) 1997-1999, Free Software Foundation, Inc. -- -- -- -- Gnatstub is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. Gnatstub is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with GNAT; see file COPYING. If -- -- not, write to the Free Software Foundation, 59 Temple Place Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- Gnatstub is distributed as a part of the ASIS implementation for GNAT -- -- (ASIS-for-GNAT). -- -- -- -- Gnatstub was originally developed by Alexei Kuchumov as a part of -- -- collaboration between Software Engineering Laboratory of the Swiss -- -- Federal Institute of Technology in Lausanne, Switzerland, and the -- -- Scientific Research Computer Center of the Moscow State University, -- -- Russia. This work was supported by a grant from the Swiss National -- -- Science Foundation, no 7SUPJ048247, funding a project "Development of -- -- ASIS for GNAT with industry quality". -- -- -- -- Gnatstub is now maintained by Ada Core Technologies Inc -- -- (http://www.gnat.com). -- ------------------------------------------------------------------------------ -- This package defines routines providing the main functionality of -- Gnatstub. with Asis; use Asis; package Gnatstub.Sampler is procedure Brief_Help; -- Prints brief help information to stdout. procedure Initialize; -- Reads and checks the command line parameters and initializes the -- Gnatstub options. Checks the existence of the files to be processed -- by Gnatstub and applicability of the gnatstub options with these files. -- Tries to create the tree file, if necessary. -- If everything is OK, sets the global Is_Initialized variable True. -- This procedure does not use anything from ASIS procedure Put_Gnatstub_Version; -- outputs the gnatstub version information procedure Create_Sample; -- If Is_Initialized, generates the sample body. This procedure is an -- ASIS application procedure Clean_Up; -- Now the only thing it does is removing the tree file, if needed end Gnatstub.Sampler;