diff options
Diffstat (limited to 'xmlserializer/XmlStringDocSource.cpp')
-rw-r--r-- | xmlserializer/XmlStringDocSource.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/xmlserializer/XmlStringDocSource.cpp b/xmlserializer/XmlStringDocSource.cpp index b360322..12307f2 100644 --- a/xmlserializer/XmlStringDocSource.cpp +++ b/xmlserializer/XmlStringDocSource.cpp @@ -37,12 +37,14 @@ CXmlStringDocSource::CXmlStringDocSource(const string& strXmlInput, const string& strXmlSchemaFile, const string& strRootElementType, const string& strRootElementName, - const string& strNameAttrituteName) : + const string& strNameAttrituteName, + bool bValidateWithSchema) : base(xmlReadMemory(strXmlInput.c_str(), strXmlInput.size(), "", NULL, 0), - strXmlSchemaFile, - strRootElementType, - strRootElementName, - strNameAttrituteName) + strXmlSchemaFile, + strRootElementType, + strRootElementName, + strNameAttrituteName, + bValidateWithSchema) { } |