| 860 | |
| 861 | |
| 862 | TiXmlNode* TiXmlElement::Clone() const |
| 863 | { |
| 864 | TiXmlElement* clone = new (std::nothrow) TiXmlElement( Value() ); |
| 865 | if ( !clone ) |
| 866 | return 0; |
| 867 | |
| 868 | CopyTo( clone ); |
| 869 | return clone; |
| 870 | } |
| 871 | |
| 872 | |
| 873 | const char* TiXmlElement::GetText() const |
no test coverage detected