| 53 | size_t ReadInlineData(vtkXMLDataElement* element, int isAscii, void* buffer, |
| 54 | vtkTypeUInt64 startWord, size_t numWords, int wordType); |
| 55 | size_t ReadInlineData( |
| 56 | vtkXMLDataElement* element, int isAscii, char* buffer, vtkTypeUInt64 startWord, size_t numWords) |
| 57 | { |
| 58 | return this->ReadInlineData(element, isAscii, buffer, startWord, numWords, VTK_CHAR); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Read from an appended data section starting at the given appended |
nothing calls this directly
no test coverage detected