diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2007-07-27 08:53:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2007-07-27 08:53:22 (GMT) |
commit | 9343f07a41e764a904f2d8bef3dd6ac967b63989 (patch) | |
tree | 096d7be65663d2b1088aed9714e8047edf65961d /qtools | |
parent | 0424762097d2a6393d3eed4e2e0a7f32041cfa50 (diff) | |
download | Doxygen-9343f07a41e764a904f2d8bef3dd6ac967b63989.zip Doxygen-9343f07a41e764a904f2d8bef3dd6ac967b63989.tar.gz Doxygen-9343f07a41e764a904f2d8bef3dd6ac967b63989.tar.bz2 |
Release-1.5.3
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/qstack.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qtools/qstack.h b/qtools/qstack.h index c23215c..c84d8d2 100644 --- a/qtools/qstack.h +++ b/qtools/qstack.h @@ -59,6 +59,7 @@ public: type *pop() { return (type *)QGList::takeFirst(); } bool remove() { return QGList::removeFirst(); } void clear() { QGList::clear(); } + type *bottom() const { return (type *)QGList::clast(); } type *top() const { return (type *)QGList::cfirst(); } operator type *() const { return (type *)QGList::cfirst(); } type *current() const { return (type *)QGList::cfirst(); } |