2015-04-17 03:05:59 +08:00
|
|
|
class partial_template: public mstch::object {
|
|
|
|
public:
|
|
|
|
partial_template() {
|
2015-04-21 21:04:11 +08:00
|
|
|
register_methods(this, {
|
|
|
|
{"title", &partial_template::title},
|
|
|
|
{"again", &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>();
|