| 719 | // ----------- |
| 720 | |
| 721 | Stack::Stack (bool ownerOfObjects) |
| 722 | { |
| 723 | this->ownerOfObjects = ownerOfObjects; |
| 724 | bottom = top = NULL; |
| 725 | numElements = 0; |
| 726 | } |
| 727 | |
| 728 | Stack::~Stack() |
| 729 | { |
nothing calls this directly
no outgoing calls
no test coverage detected