| 205 | } |
| 206 | |
| 207 | bool Options::specFile(std::string &out) const { |
| 208 | if (!vm.count("file")) { |
| 209 | return false; |
| 210 | } |
| 211 | out = vm["file"].as<std::string>(); |
| 212 | return true; |
| 213 | } |
| 214 | |
| 215 | bool Options::outputJSONFile(std::string &out) const { |
| 216 | if (!vm.count("json")) { |