| 78 | #include "lastool.hpp" |
| 79 | |
| 80 | struct CsvString { |
| 81 | std::string text; |
| 82 | bool quote; // true = quoted, false = unquoted |
| 83 | }; |
| 84 | |
| 85 | using JsonObject = nlohmann::ordered_json; |
| 86 | using Value = std::variant<std::string, const char*, I32, I64, U32, U64, double, bool, CsvString>; |
nothing calls this directly
no outgoing calls
no test coverage detected