3 /* Stack - a template stack class
5 ** Copyright 2001 pinc Software. All Rights Reserved.
11 #include <SupportDefs.h>
14 template<class T
> class Stack
31 status_t
Push(T value
)
36 fArray
= (T
*)realloc(fArray
,fMax
* sizeof(T
));
40 fArray
[fUsed
++] = value
;
49 *value
= fArray
[--fUsed
];