| 1952 | } |
| 1953 | |
| 1954 | XMLAttribute* XMLElement::CreateAttribute() |
| 1955 | { |
| 1956 | TIXMLASSERT( sizeof( XMLAttribute ) == _document->_attributePool.ItemSize() ); |
| 1957 | XMLAttribute* attrib = new (_document->_attributePool.Alloc() ) XMLAttribute(); |
| 1958 | TIXMLASSERT( attrib ); |
| 1959 | attrib->_memPool = &_document->_attributePool; |
| 1960 | attrib->_memPool->SetTracked(); |
| 1961 | return attrib; |
| 1962 | } |
| 1963 | |
| 1964 | // |
| 1965 | // <ele></ele> |
nothing calls this directly
no test coverage detected