1 const std::array<std::string, ${len(pathinstances)}> paths = { 2 % for p in paths: 3 "${p.name}"s, 4 % endfor 5 }; 6 7 const std::array<std::string, ${len(pathwatches)}> pathwatches = {{ 8 % for w in pathwatches: 9 paths[${w.pathinstances}], 10 % endfor 11 }}; 12