12 lines
257 B
C++
12 lines
257 B
C++
|
class comments: public mstch::object {
|
||
|
public:
|
||
|
comments() {
|
||
|
register_methods(this, {{"title", &title}});
|
||
|
}
|
||
|
|
||
|
mstch::node title() {
|
||
|
return std::string{"A Comedy of Errors"};
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const mstch::node comments_data = std::make_shared<comments>();
|