* This is made into a class because we maybe want to localize it in the future */
| 4 | * This is made into a class because we maybe want to localize it in the future |
| 5 | */ |
| 6 | struct CopyOperationNames |
| 7 | { |
| 8 | std::wstring_view Copy = L"Copy"; |
| 9 | std::wstring_view Move = L"Move"; |
| 10 | std::wstring_view Paste = L"Paste"; |
| 11 | std::wstring_view Delete = L"Delete"; |
| 12 | |
| 13 | static CopyOperationNames& GetInstance(); |
| 14 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected