mstch/test/data/escaped.hpp
2015-04-16 21:05:59 +02:00

16 lines
346 B
C++

class escaped: public mstch::object {
public:
escaped() {
register_methods(this, {{"title", &title}, {"entities", &entities}});
}
mstch::node title() {
return std::string{"Bear > Shark"};
};
mstch::node entities() {
return std::string{"&quot; \"'<>/"};
}
};
const mstch::node escaped_data = std::make_shared<escaped>();