mirror of
https://github.com/boostorg/url.git
synced 2025-05-09 09:23:52 +00:00
23 lines
533 B
C++
23 lines
533 B
C++
//
|
|
// 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 http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// Official repository: https://github.com/boostorg/url
|
|
//
|
|
|
|
#ifndef BOOST_URL_ROUTER_SRC_HPP
|
|
#define BOOST_URL_ROUTER_SRC_HPP
|
|
|
|
#ifndef BOOST_URL_SOURCE
|
|
#define BOOST_URL_SOURCE
|
|
#endif
|
|
|
|
// include in one and no more than one source file
|
|
#include "detail/impl/router.ipp"
|
|
#include "impl/matches.ipp"
|
|
|
|
#endif
|
|
|