---------------------------------------------------------------------
| 30 | public: |
| 31 | //--------------------------------------------------------------------- |
| 32 | Handle(T_Handle handle, T_Releaser releaser) |
| 33 | : handle_(handle), releaser_(releaser) |
| 34 | { |
| 35 | if (!handle_) |
| 36 | THROW(L"Handle is not valid"); |
| 37 | if (!releaser_) |
| 38 | THROW(L"Releaser is not valid"); |
| 39 | } |
| 40 | |
| 41 | //--------------------------------------------------------------------- |
| 42 | Handle(Handle&& handle) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected