| 38 | return JSONPtr(json_string(s.c_str())); |
| 39 | } |
| 40 | inline JSONPtr NewJSONInt(json_int_t value) |
| 41 | { |
| 42 | return JSONPtr(json_integer(value)); |
| 43 | } |
| 44 | inline JSONPtr NewJSONReal(double value) |
| 45 | { |
| 46 | return JSONPtr(json_real(value)); |
no outgoing calls
no test coverage detected