2015-04-17 03:05:59 +08:00
|
|
|
class partial_template: public mstch::object {
|
|
|
|
public:
|
|
|
|
partial_template() {
|
2015-04-17 08:07:14 +08:00
|
|
|
register_method("title", this, &partial_template::title);
|
|
|
|
register_method("again", this, &partial_template::again);
|
2015-04-17 03:05:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mstch::node title() {
|
|
|
|
return std::string{"Welcome"};
|
|
|
|
}
|
|
|
|
|
|
|
|
mstch::node again() {
|
|
|
|
return std::string{"Goodbye"};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto partial_template_data = std::make_shared<partial_template>();
|