| 77 | }; |
| 78 | |
| 79 | static void write_version(ValidateWriter* writer) { |
| 80 | std::ostringstream version_oss; |
| 81 | version_oss << "lasvalidate (" << VALIDATE_VERSION << ") built with LAStools version " << LAS_TOOLS_VERSION; |
| 82 | |
| 83 | writer->write("version", version_oss.str()); |
| 84 | } |
| 85 | |
| 86 | static std::string get_command_line(int argc, char* argv[]) { |
| 87 | std::ostringstream command_line_oss; |