| 133 | {this->head = _CleanUp_Queue_NewHead();} |
| 134 | |
| 135 | void Set( T* t ) |
| 136 | /* q.Set(t) sets the clean-up queue of BO(t) to be q. */ |
| 137 | {_CleanUp_Queue_Set( this->head, t );} |
| 138 | |
| 139 | int Call() |
| 140 | /* If q is non-empty, q.Call() removes the first object and |
nothing calls this directly
no outgoing calls
no test coverage detected