-------------------------------------------------------------------------------
| 36 | |
| 37 | //------------------------------------------------------------------------------- |
| 38 | void vtkStandaloneSession::Set(vtkObjectHandle object, emscripten::val properties) |
| 39 | { |
| 40 | // Ensure the ID is set in the JSON state before updating the object |
| 41 | properties.set("Id", object); |
| 42 | vtkSessionJsonImpl propertiesImpl{ properties }; |
| 43 | return vtkSessionUpdateObjectFromState(this->Session, &propertiesImpl); |
| 44 | } |
| 45 | |
| 46 | //------------------------------------------------------------------------------- |
| 47 | emscripten::val vtkStandaloneSession::Get(vtkObjectHandle object) |
nothing calls this directly
no test coverage detected