| 87 | TModChooser::~TModChooser() = default; |
| 88 | |
| 89 | void TModChooser::AddMode(const TString& mode, const TMainFunctionRawPtr func, const TString& description, bool hidden, bool noCompletion) { |
| 90 | AddMode(mode, TMainFunctionPtr(func), description, hidden, noCompletion); |
| 91 | } |
| 92 | |
| 93 | void TModChooser::AddMode(const TString& mode, const TMainFunctionRawPtrV func, const TString& description, bool hidden, bool noCompletion) { |
| 94 | AddMode(mode, TMainFunctionPtrV(func), description, hidden, noCompletion); |
no test coverage detected