| 15 | void Activity::onSelectBook(const std::string& path) { activityManager.goToReader(path); } |
| 16 | |
| 17 | void Activity::startActivityForResult(std::unique_ptr<Activity>&& activity, ActivityResultHandler resultHandler) { |
| 18 | this->resultHandler = std::move(resultHandler); |
| 19 | activityManager.pushActivity(std::move(activity)); |
| 20 | } |
| 21 | |
| 22 | void Activity::setResult(ActivityResult&& result) { this->result = std::move(result); } |
| 23 |
nothing calls this directly
no test coverage detected