mstch/test/data/unescaped.hpp

12 lines
258 B
C++
Raw Normal View History

2015-04-17 03:05:59 +08:00
class unescaped: public mstch::object {
public:
unescaped() {
register_methods(this, {{"title", &unescaped::title}});
}
mstch::node title() {
return std::string{"Bear > Shark"};
}
};
const auto unescped_data = std::make_shared<unescaped>();