| 6 | namespace winrt::FastCopy::implementation |
| 7 | { |
| 8 | struct FileCompareViewModel : FileCompareViewModelT<FileCompareViewModel> |
| 9 | { |
| 10 | FileCompareViewModel(winrt::hstring path1, winrt::hstring path2); |
| 11 | |
| 12 | winrt::FastCopy::FileInfoViewModel File1() { return m_file1; } |
| 13 | winrt::FastCopy::FileInfoViewModel File2() { return m_file2; } |
| 14 | private: |
| 15 | void setRobocopyViewModelDuplicateSelection(bool isFile1, bool isSelected); |
| 16 | winrt::FastCopy::FileInfoViewModel m_file1; |
| 17 | winrt::FastCopy::FileInfoViewModel m_file2; |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | namespace winrt::FastCopy::factory_implementation |
nothing calls this directly
no outgoing calls
no test coverage detected