| 80 | return m_recordFile.has_value() && m_countItemTask.is_done() ? m_recordFile->GetNumFiles() : 0; |
| 81 | } |
| 82 | int RobocopyViewModel::FinishedItemCount() |
| 83 | { |
| 84 | return m_finishedFiles; |
| 85 | } |
| 86 | winrt::hstring RobocopyViewModel::Source() |
| 87 | { |
| 88 | if (m_countItemTask.is_done() && m_recordFile && m_iter && *m_iter >= m_recordFileBegin && *m_iter < m_recordFileEnd) |
nothing calls this directly
no outgoing calls
no test coverage detected