| 117 | } |
| 118 | |
| 119 | void working_with_ubjson_2() |
| 120 | { |
| 121 | // Parse the string of data into a std::vector<double> value |
| 122 | auto val = ubjson::decode_ubjson<std::vector<double>>(data); |
| 123 | |
| 124 | for (auto item : val) |
| 125 | { |
| 126 | std::cout << item << "\n"; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void working_with_ubjson_3() |
| 131 | { |