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.
feedback
|