45 lines
906 B
C++
45 lines
906 B
C++
// Copyright (c) Glyn Matthews 2011, 2012.
|
|
// 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)
|
|
|
|
|
|
#ifndef __BOOST_NETWORK_URI_DIRECTIVES_HOST_INC__
|
|
# define __BOOST_NETWORK_URI_DIRECTIVES_HOST_INC__
|
|
|
|
|
|
# include <boost/range/begin.hpp>
|
|
# include <boost/range/end.hpp>
|
|
|
|
|
|
namespace boost {
|
|
namespace network {
|
|
namespace uri {
|
|
struct host_directive {
|
|
|
|
explicit host_directive(const std::string &host)
|
|
: host(host)
|
|
{}
|
|
|
|
template <
|
|
class Uri
|
|
>
|
|
void operator () (Uri &uri) const {
|
|
uri.append(host);
|
|
}
|
|
|
|
std::string host;
|
|
|
|
};
|
|
|
|
inline
|
|
host_directive host(const std::string &host) {
|
|
return host_directive(host);
|
|
}
|
|
} // namespace uri
|
|
} // namespace network
|
|
} // namespace boost
|
|
|
|
|
|
#endif // __BOOST_NETWORK_URI_DIRECTIVES_HOST_INC__
|