| 552 | { |
| 553 | public: |
| 554 | inline Stack (bool ownerOfObjects) |
| 555 | { this->base = new untyped::Stack (ownerOfObjects); } |
| 556 | |
| 557 | inline void push (T *object) { |
| 558 | ((untyped::Stack*)this->base)->push (object); } |
nothing calls this directly
no outgoing calls
no test coverage detected