src/misc/str.hpp
branchNewGRF_ports
changeset 6725 23339968083f
parent 6720 35756db7e577
child 10455 22c441f5adf9
equal deleted inserted replaced
6724:cfa62b4744d4 6725:23339968083f
   181 	}
   181 	}
   182 };
   182 };
   183 
   183 
   184 typedef CStrT<char   , false> CStrA;   ///< Case sensitive ANSI/UTF-8 string
   184 typedef CStrT<char   , false> CStrA;   ///< Case sensitive ANSI/UTF-8 string
   185 typedef CStrT<char   , true > CStrCiA; ///< Case insensitive ANSI/UTF-8 string
   185 typedef CStrT<char   , true > CStrCiA; ///< Case insensitive ANSI/UTF-8 string
       
   186 #if defined(HAS_WCHAR)
   186 typedef CStrT<wchar_t, false> CStrW;   ///< Case sensitive unicode string
   187 typedef CStrT<wchar_t, false> CStrW;   ///< Case sensitive unicode string
   187 typedef CStrT<wchar_t, true > CStrCiW; ///< Case insensitive unicode string
   188 typedef CStrT<wchar_t, true > CStrCiW; ///< Case insensitive unicode string
       
   189 #endif /* HAS_WCHAR */
   188 
   190 
   189 #endif /* STR_HPP */
   191 #endif /* STR_HPP */