| 213 | } |
| 214 | |
| 215 | bool Options::outputJSONFile(std::string &out) const { |
| 216 | if (!vm.count("json")) { |
| 217 | return false; |
| 218 | } |
| 219 | out = vm["json"].as<std::string>(); |
| 220 | return true; |
| 221 | } |
| 222 | |
| 223 | bool Options::outputXMLFile(std::string &out) const { |
| 224 | if (!vm.count("xml")) { |