| 169 | } |
| 170 | |
| 171 | bool ProgramOptions::enabled(const Option& option) const |
| 172 | { |
| 173 | for (const auto& value : m_values) { |
| 174 | if (value.option() == &option) |
| 175 | return true; |
| 176 | } |
| 177 | return false; |
| 178 | } |
| 179 | |
| 180 | std::string ProgramOptions::value_of(const Option& option) const |
| 181 | { |