urls.hpp 518 B

123456789101112131415161718192021222324
  1. //
  2. // Copyright (c) 2019 Vinnie Falco ([email protected])
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // Official repository: https://github.com/boostorg/url
  8. //
  9. #ifndef BOOST_URL_URLS_HPP
  10. #define BOOST_URL_URLS_HPP
  11. #include <boost/url/detail/config.hpp>
  12. #include <boost/url/url.hpp>
  13. #include <boost/url/url_view.hpp>
  14. namespace boost {
  15. using urls::url;
  16. using urls::url_view;
  17. } // boost
  18. #endif