| 4 | #include "CopyOperation.h" |
| 5 | |
| 6 | class IconProvider |
| 7 | { |
| 8 | public: |
| 9 | static IconProvider const& GetForCurrentTheme(); |
| 10 | |
| 11 | int GetForOperation(CopyOperation op) const; |
| 12 | private: |
| 13 | enum class ThemeType |
| 14 | { |
| 15 | Light, |
| 16 | Dark |
| 17 | } m_themeType; |
| 18 | IconProvider(ThemeType type) : m_themeType{ type } {} |
| 19 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected