| 14 | class TCudaGraph { |
| 15 | private: |
| 16 | struct TInner: public TThrRefBase { |
| 17 | TInner(cudaGraph_t graph) |
| 18 | : Graph_(graph) |
| 19 | { |
| 20 | } |
| 21 | |
| 22 | ~TInner(); |
| 23 | |
| 24 | cudaGraph_t Graph_; |
| 25 | }; |
| 26 | |
| 27 | private: |
| 28 | TIntrusivePtr<TInner> Impl_; |
no outgoing calls
no test coverage detected