Skip to content
Snippets Groups Projects
Commit 43a45e82 authored by Alberto Massari's avatar Alberto Massari
Browse files

Added method to expose data member

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@397146 13f79535-47bb-0310-9956-ffa450edef68
parent 40a3b449
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,13 @@ public:
DatatypeValidator* getDatatypeValidator(const XMLCh* const uriStr,
const XMLCh* const typeName);
/**
* Retrieve the DatatypeValidatorFactory used for built-in schema types
*
* @return the DatatypeValidator associated with namespace for XMLSchema
*/
DatatypeValidatorFactory* getBuiltinDatatypeValidatorFactory();
/**
* Retrieve the grammar that is associated with the specified namespace key
*
......@@ -253,6 +260,11 @@ inline ValueVectorOf<SchemaGrammar*>* GrammarResolver::getGrammarsToAddToXSModel
return fGrammarsToAddToXSModel;
}
inline DatatypeValidatorFactory* GrammarResolver::getBuiltinDatatypeValidatorFactory()
{
return fDataTypeReg;
}
XERCES_CPP_NAMESPACE_END
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment