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