------------------------- ComponentView::Accessor Iteratable view of a selection of components
| 19 | // Iteratable view of a selection of components |
| 20 | // |
| 21 | ComponentView::Accessor::Accessor(void** pointerRef, T_CompTypeIdx const type, bool const readAccess) |
| 22 | : currentElement(reinterpret_cast<uint8*&>(*pointerRef)) |
| 23 | , typeIdx(type) |
| 24 | , read(readAccess) |
| 25 | { } |
| 26 | |
| 27 | |
| 28 | //================ |
nothing calls this directly
no outgoing calls
no test coverage detected