| 30 | return JSONPtr(json_object()); |
| 31 | } |
| 32 | inline JSONPtr NewJSONArray() |
| 33 | { |
| 34 | return JSONPtr(json_array()); |
| 35 | } |
| 36 | inline JSONPtr NewJSONString(std::string const & s) |
| 37 | { |
| 38 | return JSONPtr(json_string(s.c_str())); |
no outgoing calls
no test coverage detected