tool_version.h (581B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 #ifndef TOOLS_TOOL_VERSION_H_ 7 #define TOOLS_TOOL_VERSION_H_ 8 9 #include <string> 10 11 namespace jpegxl { 12 namespace tools { 13 14 // Package version as defined by the JPEGXL_VERSION macro. This is not the 15 // library semantic versioning number, but instead additional information on the 16 // tool version. 17 extern const char* kJpegxlVersion; 18 19 } // namespace tools 20 } // namespace jpegxl 21 22 #endif // TOOLS_TOOL_VERSION_H_