Write generic key information to element.
| 1738 | |
| 1739 | // Write generic key information to element. |
| 1740 | void prepElementForInfo(vtkInformationKey* key, vtkXMLDataElement* element) |
| 1741 | { |
| 1742 | element->SetName("InformationKey"); |
| 1743 | element->SetAttribute("name", key->GetName()); |
| 1744 | element->SetAttribute("location", key->GetLocation()); |
| 1745 | } |
| 1746 | |
| 1747 | template <class KeyType> |
| 1748 | void writeScalarInfo( |
no test coverage detected