------------------------------------------------------------------------------
| 933 | |
| 934 | //------------------------------------------------------------------------------ |
| 935 | void vtkXMLDataElement::SetIntAttribute(const char* name, int value) |
| 936 | { |
| 937 | this->SetVectorAttribute(name, 1, &value); |
| 938 | } |
| 939 | |
| 940 | //------------------------------------------------------------------------------ |
| 941 | void vtkXMLDataElement::SetFloatAttribute(const char* name, float value) |
no test coverage detected