mstch/test/data/section_as_context.h

11 lines
334 B
C
Raw Normal View History

2015-04-10 02:41:27 +08:00
auto data = mstch::object{
{"a_object", mstch::object{
{"title", std::string{"this is an object"}},
{"description", std::string{"one of its attributes is a list"}},
{"a_list", mstch::array{
mstch::object{{"label", std::string{"listitem1"}}},
mstch::object{{"label", std::string{"listitem2"}}}
}}
}}
};