| libxml++ 3.2.4
    | 
Base class for XML validators. More...
#include <libxml++/validators/validator.h>

| Public Member Functions | |
| LIBXMLPP_API | Validator () noexcept | 
| LIBXMLPP_API | ~Validator () override | 
| virtual LIBXMLPP_API | operator bool () const noexcept=0 | 
| Test whether a schema or a DTD has been parsed.  More... | |
| virtual LIBXMLPP_API void | parse_file (const std::string & filename)=0 | 
| Parse a schema definition file or an external subset (DTD file).  More... | |
| virtual LIBXMLPP_API void | parse_memory (const Glib::ustring & contents)=0 | 
| Parse a schema definition or a DTD from a string.  More... | |
| virtual LIBXMLPP_API void | validate (const Document * document)=0 | 
| Validate a document, using a previously parsed schema or DTD.  More... | |
| Protected Member Functions | |
| virtual LIBXMLPP_API void | check_for_exception () | 
| virtual LIBXMLPP_API void | check_for_validity_messages () | 
| virtual LIBXMLPP_API void | handle_exception () | 
| To be called in an exception handler.  More... | |
| virtual LIBXMLPP_API void | initialize_context () | 
| virtual LIBXMLPP_API void | on_validity_error (const Glib::ustring & message) | 
| virtual LIBXMLPP_API void | on_validity_warning (const Glib::ustring & message) | 
| virtual LIBXMLPP_API void | release_underlying () | 
|  Protected Member Functions inherited from xmlpp::NonCopyable | |
| NonCopyable () noexcept | |
| NonCopyable (const NonCopyable &)=delete | |
| NonCopyable (NonCopyable &&)=delete | |
| virtual | ~NonCopyable () | 
| NonCopyable & | operator= (const NonCopyable &)=delete | 
| NonCopyable & | operator= (NonCopyable &&)=delete | 
| Static Protected Member Functions | |
| static LIBXMLPP_API void | callback_validity_error (void * ctx, const char * msg,...) | 
| static LIBXMLPP_API void | callback_validity_warning (void * ctx, const char * msg,...) | 
| Protected Attributes | |
| std::unique_ptr< exception > | exception_ | 
| Glib::ustring | validate_error_ | 
| Glib::ustring | validate_warning_ | 
Base class for XML validators.
| 
 | noexcept | 
| 
 | override | 
| 
 | staticprotected | 
| 
 | staticprotected | 
| 
 | protectedvirtual | 
| 
 | protectedvirtual | 
| 
 | protectedvirtual | 
To be called in an exception handler.
| 
 | protectedvirtual | 
Reimplemented in xmlpp::DtdValidator, xmlpp::RelaxNGValidator, xmlpp::SchemaValidatorBase, and xmlpp::XsdValidator.
| 
 | protectedvirtual | 
| 
 | protectedvirtual | 
| 
 | explicitpure virtualnoexcept | 
Test whether a schema or a DTD has been parsed.
For instance
Implemented in xmlpp::DtdValidator, xmlpp::RelaxNGValidator, xmlpp::XsdValidator, and xmlpp::SchemaValidatorBase.
| 
 | pure virtual | 
Parse a schema definition file or an external subset (DTD file).
| filename | The URL of the schema or the DTD. | 
| xmlpp::parse_error | 
Implemented in xmlpp::DtdValidator, xmlpp::RelaxNGValidator, xmlpp::XsdValidator, and xmlpp::SchemaValidatorBase.
| 
 | pure virtual | 
Parse a schema definition or a DTD from a string.
| contents | The schema definition or the DTD as a string. | 
| xmlpp::parse_error | 
Implemented in xmlpp::DtdValidator, xmlpp::RelaxNGValidator, xmlpp::XsdValidator, and xmlpp::SchemaValidatorBase.
| 
 | protectedvirtual | 
Reimplemented in xmlpp::DtdValidator, xmlpp::RelaxNGValidator, xmlpp::SchemaValidatorBase, and xmlpp::XsdValidator.
| 
 | pure virtual | 
Validate a document, using a previously parsed schema or DTD.
| document | Pointer to the document. | 
| xmlpp::internal_error | |
| xmlpp::validity_error | 
Implemented in xmlpp::DtdValidator, xmlpp::RelaxNGValidator, xmlpp::XsdValidator, and xmlpp::SchemaValidatorBase.
| 
 | protected | 
| 
 | protected | 
| 
 | protected |