| 24 | |
| 25 | public: |
| 26 | explicit Json_string(const char *name) |
| 27 | { |
| 28 | json_string_set_str(&str, (const uchar *) name, |
| 29 | (const uchar *) name + strlen(name)); |
| 30 | json_string_set_cs(&str, system_charset_info); |
| 31 | } |
| 32 | json_string_t *get() { return &str; } |
| 33 | }; |
| 34 |
nothing calls this directly
no test coverage detected