// // Copyright (c) 2023 Alan de Freitas (alandefreitas@gmail.com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt) // // Official repository: https://github.com/boostorg/url // = QR Code A QR code is a machine-readable two-dimensional barcode. They might contain data for a identifier or a URL to a website. This example shows how to construct and modify URLs to consume a third party API to generate QR Codes. [source,cpp] ---- include::example$example/qrcode.cpp[tag=example_qrcode,indent=0] ----