We are working on the localization of our application and now we are dealing with the correction of all hard-coded strings in LoadString (), etc.
I quickly looked through this class , but I wonder if anyone has used any other good wrappers.
Some requirements / pleasant to use:
- short replacements of hard-coded lines - we do not want to add lines or lines of code.
- free and without royalty
EDIT A bit more information - hard-coded strings were all over the code. Sometimes they were converted by the compiler to CString, sometimes before std :: string, and sometimes just by the old char *.
We want to minimize changes in the code base (250k + lines of code) and we will not interfere much in places where all lines are used as different types.
Thus, a class / method must fulfill multiple responsibilities like wchar, CString, std :: string, etc.
source share