| 91 | vtkTextCodec::vtkTextCodec() = default; |
| 92 | |
| 93 | std::string vtkTextCodec::ToString(istream& inputStream) |
| 94 | { |
| 95 | std::string result; |
| 96 | stringIterator iterator(result); |
| 97 | this->ToUnicode(inputStream, iterator); |
| 98 | return result; |
| 99 | } |
| 100 | |
| 101 | void vtkTextCodec::PrintSelf(ostream& os, vtkIndent indent) |
| 102 | { |