Sets required options
| 3800 | |
| 3801 | /// Sets required options |
| 3802 | Option *needs(Option *opt) { |
| 3803 | if (opt != this) { |
| 3804 | needs_.insert(opt); |
| 3805 | } |
| 3806 | return this; |
| 3807 | } |
| 3808 | |
| 3809 | /// Can find a string if needed |
| 3810 | template <typename T = App> |
nothing calls this directly
no test coverage detected