-------------------------------------------------------------------------------
| 27 | |
| 28 | //------------------------------------------------------------------------------- |
| 29 | bool vtkRemoteSession::RegisterState(emscripten::val state) |
| 30 | { |
| 31 | vtkSessionJsonImpl stateImpl{ state }; |
| 32 | return vtkSessionRegisterState(this->Session, &stateImpl) == vtkSessionResultSuccess; |
| 33 | } |
| 34 | |
| 35 | //------------------------------------------------------------------------------- |
| 36 | bool vtkRemoteSession::UnRegisterState(vtkTypeUInt32 object) |
nothing calls this directly
no test coverage detected