diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2024-01-21 12:31:30 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2024-01-21 12:31:30 +0100 |
| commit | 7dd49c6293172b494c78918507242cdb55d35137 (patch) | |
| tree | 9c8ab822ab9501a5ea2f937e609144e00ea091c4 /sax/src/sax_delegate.cc | |
| parent | fc4547b412e28164af1bf8981234c6af959ccc0b (diff) | |
WIP
Diffstat (limited to 'sax/src/sax_delegate.cc')
| -rw-r--r-- | sax/src/sax_delegate.cc | 21 |
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 |
