#include "sax_delegate.hh" namespace modxml { namespace sax { void Delegate::start_element(std::string_view, Attributes const&) {} void Delegate::empty_element(std::string_view, Attributes const&) {} void Delegate::end_element(std::string_view) {} void Delegate::character_data(std::string_view) {} void Delegate::processing_instruction(std::string_view, std::string_view) {} void Delegate::comment(std::string_view) {} void Delegate::error(std::string_view) {} } // namespace sax } // namespace modxml