| 27 | template<typename T> |
| 28 | struct AppCommandBase abstract : AppCommand { |
| 29 | explicit AppCommandBase(const CString& name, AppCommandCallback<T> cb = nullptr) : AppCommand(name), _cb(cb) {} |
| 30 | |
| 31 | void SetCallback(AppCommandCallback<T> cb) { |
| 32 | _cb = cb; |
nothing calls this directly
no outgoing calls
no test coverage detected