Houge
Member
|
Json for C++
Hi!
Does EE need json parser in it?
There is a cool class here which helps a lot
|
|
03-26-2015 01:37 PM |
|
Zervox
Member
|
RE: Json for C++
Code:
Bool loadJSON(C Str &name, const_mem_addr Secure *secure=NULL); // load from file in JSON format, false on fail, 'secure' must point to object in constant memory address (only pointer is stored through which the object can be later accessed)
Bool loadJSON(FileText &f ); // load from file in JSON format, false on fail, 'f' file must be already opened for reading
in TextData, or is it missing something?
|
|
03-26-2015 03:08 PM |
|
Houge
Member
|
RE: Json for C++
(03-26-2015 03:08 PM)Zervox Wrote: in TextData, or is it missing something?
As i understand current functions allow to load json to xml and then operate with xml. The class in the first message allows json operations.
|
|
03-26-2015 03:20 PM |
|
Pixel Perfect
Member
|
RE: Json for C++
That looks like a really nice implementation
|
|
03-27-2015 06:45 PM |
|