| User's Guide: A Framework for Object Persistency for GNAT; Version 0.6.1; Document Revision $Revision: 1.17 $ | ||
|---|---|---|
| Prev | Chapter 34. UTIL.Stack | Next |
type Item_Type is private;
function New_Stack return Handle;
procedure Destroy(
This : in out Handle );
Stack_Empty : exception;
procedure Push(
This : in Handle;
Value : in Item_Type );
procedure Pop(
This : in Handle;
Value : in out Item_Type );
function Current(
This : in Handle ) return Item_Type ;
function Is_Empty(
This : in Handle ) return Boolean;