I need a JSON parser library that supports both byte character and wide character so that I can switch between char and wchar_t. I've googled it, and I just found jsoncpp. jsoncpp is good, but it only supports byte character, not wide character. What I want is a library that could switch between char and wchar_t. If macro UNICODE and _UNICODE are defined, then my application will use wchar_t, otherwise, my app will use char. And I should use TCHAR/LPCTSTR to represent strings used in my app. Are there any such libraries? Thanks in advance.

link|improve this question
1  
This is the road to ruin. Don't try to use libraries that support every possible configuration your application can have, instead do the translation yourself. – Dietrich Epp Aug 20 '11 at 6:20
You don't really need this duality unless supporting Windows 98. All later Windows versions use wide characters. – Bo Persson Aug 20 '11 at 11:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.