| 27 | { |
| 28 | public: |
| 29 | void |
| 30 | testJavadocs() |
| 31 | { |
| 32 | //-------------------------------------- |
| 33 | |
| 34 | unsigned char buf[ 4000 ]; |
| 35 | static_resource mr( buf ); |
| 36 | |
| 37 | // Parse the string, using our memory resource |
| 38 | value jv = parse( "[1,2,3]", &mr ); |
| 39 | |
| 40 | // Print the JSON |
| 41 | std::cout << jv; |
| 42 | |
| 43 | //-------------------------------------- |
| 44 | } |
| 45 | |
| 46 | void |
| 47 | test() |
nothing calls this directly
no outgoing calls
no test coverage detected