| 17 | { |
| 18 | |
| 19 | ClientPluginEventRouter::ClientPluginEventRouter(const std::shared_ptr<BaseWorkspace>& ws) { |
| 20 | ws_ = ws; |
| 21 | context_ = ws_->GetContext(); |
| 22 | settings_ = Settings::Instance(); |
| 23 | } |
| 24 | |
| 25 | void ClientPluginEventRouter::ProcessPluginEvent(const std::shared_ptr<ClientPluginBaseEvent>& event) { |
| 26 | if (!thunder_sdk_) { |
nothing calls this directly
no test coverage detected