| 16 | using ConditionVector = Condition<std::vector<std::string>>; |
| 17 | |
| 18 | struct Variable { |
| 19 | std::string name; |
| 20 | std::string help; |
| 21 | mpark::variant<bool, std::string> value; |
| 22 | bool cache = false; |
| 23 | bool force = false; |
| 24 | }; |
| 25 | |
| 26 | struct Option { |
| 27 | std::string name; |
nothing calls this directly
no outgoing calls
no test coverage detected