-------------------------------------------------------------------------------
| 187 | |
| 188 | //------------------------------------------------------------------------------- |
| 189 | uint8_t* vtkSessionGetBlob(vtkSession session, const char* hash, size_t* length) |
| 190 | { |
| 191 | auto blobArray = session->Manager->GetBlob(hash); |
| 192 | *length = static_cast<std::size_t>(blobArray->GetNumberOfValues()); |
| 193 | return blobArray->GetPointer(0); |
| 194 | } |
| 195 | |
| 196 | //------------------------------------------------------------------------------- |
| 197 | vtkSessionJson vtkSessionInvoke( |
no test coverage detected