------------------------------------------------------------------------------
| 951 | |
| 952 | //------------------------------------------------------------------------------ |
| 953 | void vtkXMLDataElement::SetUnsignedLongAttribute(const char* name, unsigned long value) |
| 954 | { |
| 955 | this->SetVectorAttribute(name, 1, &value); |
| 956 | } |
| 957 | |
| 958 | //------------------------------------------------------------------------------ |
| 959 | template <class T> |
nothing calls this directly
no test coverage detected