2015-04-16 19:05:59 +00:00
|
|
|
class comments: public mstch::object {
|
|
|
|
public:
|
|
|
|
comments() {
|
2015-04-17 00:07:14 +00:00
|
|
|
register_method("title", this, &comments::title);
|
2015-04-16 19:05:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mstch::node title() {
|
|
|
|
return std::string{"A Comedy of Errors"};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const mstch::node comments_data = std::make_shared<comments>();
|