summaryrefslogtreecommitdiff
path: root/sax/src/sax_delegate.cc
blob: 2c2cfcdaab30194e26c3b02a7404382a30447f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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