----------------------------------------------------------------------------
| 209 | |
| 210 | //---------------------------------------------------------------------------- |
| 211 | int vtkClientServerInterpreter::ProcessStream(const unsigned char* msg, size_t msgLength) |
| 212 | { |
| 213 | vtkClientServerStream css; |
| 214 | css.SetData(msg, msgLength); |
| 215 | return this->ProcessStream(css); |
| 216 | } |
| 217 | |
| 218 | //---------------------------------------------------------------------------- |
| 219 | int vtkClientServerInterpreter::ProcessStream(const vtkClientServerStream& css) |