| 324 | } |
| 325 | |
| 326 | std::string listStr(std::string key, std::vector<RegEx> ids) |
| 327 | { |
| 328 | std::stringstream s; |
| 329 | s << key << ": ["; |
| 330 | for (auto& id: ids) |
| 331 | s << id.m_str << ", "; |
| 332 | s.seekp(-2, std::ios_base::end); |
| 333 | s << "]" << std::endl; |
| 334 | return s.str(); |
| 335 | } |
| 336 | |
| 337 | void StacReader::Private::initializeArgs() |
| 338 | { |