| 11 | { |
| 12 | |
| 13 | std::shared_ptr<AppSharedInfo> AppSharedInfo::Make(const std::shared_ptr<RdContext>& ctx) { |
| 14 | return std::make_shared<AppSharedInfo>(ctx); |
| 15 | } |
| 16 | |
| 17 | AppSharedInfo::AppSharedInfo(const std::shared_ptr<RdContext>& ctx) { |
| 18 | context_ = ctx; |
nothing calls this directly
no outgoing calls
no test coverage detected