| 274 | } |
| 275 | |
| 276 | int main() |
| 277 | { |
| 278 | try |
| 279 | { |
| 280 | std::cout << "jsoncons version: " << version() << '\n'; |
| 281 | |
| 282 | first_example_a(); |
| 283 | first_example_b(); |
| 284 | first_example_c(); |
| 285 | first_example_d(); |
| 286 | |
| 287 | second_example_a(); |
| 288 | |
| 289 | object_range_based_for_loop(); |
| 290 | |
| 291 | validation_example(); |
| 292 | |
| 293 | get_example(); |
| 294 | } |
| 295 | catch (const std::exception& e) |
| 296 | { |
| 297 | std::cout << e.what() << '\n'; |
| 298 | } |
| 299 | |
| 300 | return 0; |
| 301 | } |
nothing calls this directly
no test coverage detected