Barracuda Application Server C/C++ Reference
NO
|
The JValFact enables one to manually create a JVal syntax tree or add nodes to an existing syntax tree.
#include <JVal.h>
Public Member Functions | |
JValFact (AllocatorIntf *vAlloc, AllocatorIntf *dAlloc) | |
create a JValFact JVal factory instance. More... | |
JVal * | mkString (const char *v) |
Make a string. More... | |
JVal * | mkDouble (double v) |
Make a float. More... | |
JVal * | mkInt (S32 v) |
Make an integer. More... | |
JVal * | mkLong (S64 v) |
Make a long integer. More... | |
JVal * | mkBoolean (bool v) |
Make a boolean. More... | |
JVal * | mkNull () |
Make a null value. More... | |
JVal * | mkObject () |
Make a JSON object. More... | |
JVal * | mkArray () |
Make a JSON array. More... | |