Base class for SmallStack. More...
#include <smallstack_type.hpp>
Protected Member Functions | |
| SmallStackItem (const Titem &value, Tindex next) | |
| Create a new item. | |
Protected Attributes | |
| Tindex | next |
| Pool index of next item. | |
| Titem | value |
| Value of current item. | |
Base class for SmallStack.
We cannot add this into SmallStack itself as certain compilers don't like it.
Definition at line 23 of file smallstack_type.hpp.
| SmallStackItem< Tindex, Titem >::SmallStackItem | ( | const Titem & | value, | |
| Tindex | next | |||
| ) | [inline, protected] |
Create a new item.
| value | Value of the item. | |
| next | Next item in the stack. |
Definition at line 33 of file smallstack_type.hpp.
1.7.1