| 656 | void initWarning(const bilingual_str& message) override { InitWarning(message); } |
| 657 | void initError(const bilingual_str& message) override { InitError(message); } |
| 658 | void showProgress(const std::string& title, int progress, bool resume_possible) override |
| 659 | { |
| 660 | ::uiInterface.ShowProgress(title, progress, resume_possible); |
| 661 | } |
| 662 | std::unique_ptr<Handler> handleNotifications(std::shared_ptr<Notifications> notifications) override |
| 663 | { |
| 664 | return std::make_unique<NotificationsHandlerImpl>(std::move(notifications)); |
nothing calls this directly
no test coverage detected