|
| template<typename T > |
| void | JSON::decodeVector (std::string input, T &result) |
| |
| template<typename T > |
| void | JSON::decodeVector4 (std::string input, T &result) |
| |
| template<typename T > |
| std::string | JSON::encodeVector (T begin, T end) |
| |
| template<typename T > |
| std::string | JSON::encodeVector4 (T begin, T end) |
| |
| Value | JSON::fromDTMI (std::string &data) |
| | Parses a std::string to a valid JSON::Value. More...
|
| |
| Value | JSON::fromDTMI (const unsigned char *data, unsigned int len, unsigned int &i) |
| | Parses a single DTMI type - used recursively by the JSON::fromDTMI functions. More...
|
| |
| void | JSON::fromDTMI (std::string &data, Value &ret) |
| | Parses a std::string to a valid JSON::Value. More...
|
| |
| void | JSON::fromDTMI (const unsigned char *data, unsigned int len, unsigned int &i, Value &ret) |
| | Parses a single DTMI type - used recursively by the JSON::fromDTMI functions. More...
|
| |
| Value | JSON::fromDTMI2 (std::string &data) |
| |
| Value | JSON::fromDTMI2 (const unsigned char *data, unsigned int len, unsigned int &i) |
| |
| void | JSON::fromDTMI2 (std::string &data, Value &ret) |
| |
| void | JSON::fromDTMI2 (const unsigned char *data, unsigned int len, unsigned int &i, Value &ret) |
| |
| Value | JSON::fromFile (std::string filename) |
| | Converts a file to a JSON::Value. More...
|
| |
| Value | JSON::fromString (std::string json) |
| | Converts a std::string to a JSON::Value. More...
|
| |