| 18 | using ValueType = typename Superclass::ValueType; |
| 19 | static MockDataArray* New() { VTK_STANDARD_NEW_BODY(MockDataArray<ValueT>); } |
| 20 | void* GetVoidPointer(vtkIdType idx) override { return this->Buffer->GetBuffer() + idx; } |
| 21 | ValueType GetValue(vtkIdType valueIdx) const { return this->Buffer->GetBuffer()[valueIdx]; } |
| 22 | void SetValue(vtkIdType valueIdx, ValueType value) |
| 23 | { |
no test coverage detected