------------------------------------------------------------------------------
| 939 | |
| 940 | //------------------------------------------------------------------------------ |
| 941 | void vtkXMLDataElement::SetFloatAttribute(const char* name, float value) |
| 942 | { |
| 943 | this->SetVectorAttribute(name, 1, &value); |
| 944 | } |
| 945 | |
| 946 | //------------------------------------------------------------------------------ |
| 947 | void vtkXMLDataElement::SetDoubleAttribute(const char* name, double value) |
no test coverage detected