mstch/test/data/comments.hpp
2015-04-17 02:07:14 +02:00

12 lines
262 B
C++

class comments: public mstch::object {
public:
comments() {
register_method("title", this, &comments::title);
}
mstch::node title() {
return std::string{"A Comedy of Errors"};
}
};
const mstch::node comments_data = std::make_shared<comments>();