diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-18 17:17:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-18 17:17:59 +0300 |
commit | b257d71a41b0662db3b954e44ba9bfca2fb6c6cc (patch) | |
tree | 7d4f6b5a62e036da845fbd2fcfc4c02384faaaba /src/utils | |
parent | 65411e9bb86d97e33dce3f445f66faca178e35d2 (diff) | |
download | plus-b257d71a41b0662db3b954e44ba9bfca2fb6c6cc.tar.gz plus-b257d71a41b0662db3b954e44ba9bfca2fb6c6cc.tar.bz2 plus-b257d71a41b0662db3b954e44ba9bfca2fb6c6cc.tar.xz plus-b257d71a41b0662db3b954e44ba9bfca2fb6c6cc.zip |
Add macro XmlTextWriterEndElement.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/xml.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/xml.h b/src/utils/xml.h index 778159d86..60c1c94c4 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -47,6 +47,7 @@ reinterpret_cast<const xmlChar*>(name)) #define XmlTextWriterStartElement(writer, name) \ xmlTextWriterStartElement(writer, reinterpret_cast<const xmlChar*>(name)) +#define XmlTextWriterEndElement(writer) xmlTextWriterEndElement(writer) #define XmlTextWriterWriteAttribute(writer, name, content) \ xmlTextWriterWriteAttribute(writer, \ reinterpret_cast<const xmlChar*>(name), \ |