summaryrefslogtreecommitdiff
path: root/sax/src/sax_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sax/src/sax_delegate.cc')
-rw-r--r--sax/src/sax_delegate.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/sax/src/sax_delegate.cc b/sax/src/sax_delegate.cc
new file mode 100644
index 0000000..2c2cfcd
--- /dev/null
+++ b/sax/src/sax_delegate.cc
@@ -0,0 +1,21 @@
+#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