| 83 | namespace |
| 84 | { |
| 85 | std::string makeFilename(const std::string& s, int i) |
| 86 | { |
| 87 | std::string out = s; |
| 88 | auto pos = out.find_last_of('.'); |
| 89 | if (pos == out.npos) |
| 90 | pos = out.length(); |
| 91 | out.insert(pos, std::string("_") + std::to_string(i)); |
| 92 | return out; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 |