Begins the creation of a member whose value is an object. Call end_object() to close the member
| 207 | // Begins the creation of a member whose value is an object. |
| 208 | // Call end_object() to close the member |
| 209 | void JSONencoder::begin_member_object(const char* tag) { |
| 210 | comma_line(); |
| 211 | quoted(tag); |
| 212 | add(':'); |
| 213 | add('{'); |
| 214 | inc_level(); |
| 215 | } |
| 216 | |
| 217 | // Starts an object with {. |
| 218 | // If you need a named object you must call begin_member() first. |
no outgoing calls
no test coverage detected