-------------------------------------------------------------------------------
| 40 | |
| 41 | //------------------------------------------------------------------------------- |
| 42 | emscripten::val vtkRemoteSession::GetState(vtkTypeUInt32 object) |
| 43 | { |
| 44 | vtkGenericWarningMacro(<< "Please use vtkRemoteSession::Get(vtkTypeUInt32 object) instead. " |
| 45 | "vtkRemoteSession::GetState(vtkTypeUInt32 object) " |
| 46 | "will be removed in a future release."); |
| 47 | auto resultImpl = vtkSessionGetState(this->Session, object); |
| 48 | auto result = std::move(resultImpl->JsonValue); |
| 49 | delete resultImpl; |
| 50 | return result; |
| 51 | } |
| 52 | |
| 53 | //------------------------------------------------------------------------------- |
| 54 | void vtkRemoteSession::Set(vtkTypeUInt32 object, emscripten::val properties) |
no test coverage detected