----------------------------------------------------------------------------
| 2416 | |
| 2417 | //---------------------------------------------------------------------------- |
| 2418 | const char* vtkClientServerStream::StreamToString() const |
| 2419 | { |
| 2420 | std::ostringstream ostr; |
| 2421 | this->StreamToString(ostr); |
| 2422 | this->Internal->String = ostr.str(); |
| 2423 | return this->Internal->String.c_str(); |
| 2424 | } |
| 2425 | |
| 2426 | //---------------------------------------------------------------------------- |
| 2427 | void vtkClientServerStream::StreamToString(ostream& os) const |
no test coverage detected