/ src / modules / Workspaces / WorkspacesLib / StringUtils.h
StringUtils.h
 1  #pragma once
 2  
 3  #include <string>
 4  #include <algorithm>
 5  #include <cwctype>
 6  
 7  namespace StringUtils
 8  {
 9      bool CaseInsensitiveEquals(const std::wstring& str1, const std::wstring& str2);
10  }