| 27 | |
| 28 | |
| 29 | Option::Option(const char* fullName, const char* shortName) : |
| 30 | _shortName(shortName ? shortName : ""), |
| 31 | _fullName(fullName ? fullName : ""), |
| 32 | _required(false), |
| 33 | _repeatable(false), |
| 34 | _argRequired(false) { |
| 35 | } |
| 36 | |
| 37 | |
| 38 | Option::Option(const char* fullName, const char* shortName, const string& description, bool required) : |
nothing calls this directly
no outgoing calls
no test coverage detected