From 2615896faa646e5830abf2c269150e1165c66515 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- libxsd/xsd/cxx/parser/error-handler.hxx | 55 --------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 libxsd/xsd/cxx/parser/error-handler.hxx (limited to 'libxsd/xsd/cxx/parser/error-handler.hxx') diff --git a/libxsd/xsd/cxx/parser/error-handler.hxx b/libxsd/xsd/cxx/parser/error-handler.hxx deleted file mode 100644 index b0a04ff..0000000 --- a/libxsd/xsd/cxx/parser/error-handler.hxx +++ /dev/null @@ -1,55 +0,0 @@ -// file : xsd/cxx/parser/error-handler.hxx -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#ifndef XSD_CXX_PARSER_ERROR_HANDLER_HXX -#define XSD_CXX_PARSER_ERROR_HANDLER_HXX - -#include - -#include - -namespace xsd -{ - namespace cxx - { - namespace parser - { - template - class error_handler: public xml::error_handler - { - public: - typedef typename xml::error_handler::severity severity; - - error_handler () - : failed_ (false) - { - } - - virtual bool - handle (const std::basic_string& id, - unsigned long line, - unsigned long column, - severity s, - const std::basic_string& message); - - void - throw_if_failed () const; - - void - reset () - { - failed_ = false; - diagnostics_.clear (); - } - - private: - bool failed_; - diagnostics diagnostics_; - }; - } - } -} - -#include - -#endif // XSD_CXX_PARSER_ERROR_HANDLER_HXX -- cgit v1.1