| 376 | } |
| 377 | |
| 378 | ScopedCursor::ScopedCursor(HCURSOR hCursor) : |
| 379 | m_hCursor(::SetCursor(hCursor)) |
| 380 | { |
| 381 | } |
| 382 | |
| 383 | ScopedCursor::ScopedCursor(ScopedCursor&& sc) : |
| 384 | m_hCursor(sc.m_hCursor) |
nothing calls this directly
no outgoing calls
no test coverage detected