------------------------------------------------------------------------------ Description: Cell at current position \pre not_at_end: !IsAtEnd() \pre c_exists: c!=0 THREAD SAFE
| 93 | // \pre c_exists: c!=0 |
| 94 | // THREAD SAFE |
| 95 | void vtkBridgeCellIterator::GetCell(vtkGenericAdaptorCell* c) |
| 96 | { |
| 97 | assert("pre: not_at_end" && !IsAtEnd()); |
| 98 | assert("pre: c_exists" && c != nullptr); |
| 99 | |
| 100 | this->CurrentIterator->GetCell(c); |
| 101 | } |
| 102 | |
| 103 | //------------------------------------------------------------------------------ |
| 104 | // Description: |
no test coverage detected