partial_view.hpp 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. class partial_view: public mstch::object {
  2. private:
  3. int m_value;
  4. public:
  5. partial_view(): m_value(10000) {
  6. register_methods(this, std::map<std::string,mstch::node(partial_view::*)()>{
  7. {"greeting", &partial_view::greeting},
  8. {"farewell", &partial_view::farewell},
  9. {"name", &partial_view::name},
  10. {"value", &partial_view::value},
  11. {"taxed_value", &partial_view::taxed_value},
  12. {"in_ca", &partial_view::in_ca}
  13. });
  14. }
  15. mstch::node greeting() {
  16. return std::string{"Welcome"};
  17. }
  18. mstch::node farewell() {
  19. return std::string{"Fair enough, right?"};
  20. }
  21. mstch::node name() {
  22. return std::string{"Chris"};
  23. }
  24. mstch::node value() {
  25. return m_value;
  26. }
  27. mstch::node taxed_value() {
  28. return m_value - (m_value * 0.4);
  29. }
  30. mstch::node in_ca() {
  31. return true;
  32. }
  33. };
  34. const auto partial_view_data = std::make_shared<partial_view>();