|
| 1 | +#ifndef __BOOST_NETWORK_URI_DIRECTIVES_INC__ |
| 2 | +#define__BOOST_NETWORK_URI_DIRECTIVES_INC__ |
| 3 | + |
| 4 | + |
| 5 | +#include<boost/network/uri/uri.hpp> |
| 6 | +#include<boost/network/uri/directives/scheme.hpp> |
| 7 | +#include<boost/network/uri/directives/user_info.hpp> |
| 8 | +#include<boost/network/uri/directives/host.hpp> |
| 9 | +#include<boost/network/uri/directives/port.hpp> |
| 10 | +#include<boost/network/uri/directives/authority.hpp> |
| 11 | +#include<boost/network/uri/directives/path.hpp> |
| 12 | +#include<boost/network/uri/directives/query.hpp> |
| 13 | +#include<boost/network/uri/directives/fragment.hpp> |
| 14 | +#include<boost/network/support/is_pod.hpp> |
| 15 | +#include<boost/utility/enable_if.hpp> |
| 16 | +#include<boost/mpl/if.hpp> |
| 17 | +#include<boost/mpl/or.hpp> |
| 18 | + |
| 19 | + |
| 20 | +namespaceboost { |
| 21 | +namespacenetwork { |
| 22 | +namespaceuri { |
| 23 | +template< |
| 24 | +classTag |
| 25 | + ,classDirective |
| 26 | + > |
| 27 | +inline |
| 28 | +basic_uri<Tag> &operator << (basic_uri<Tag> &uri,const Directive &directive) { |
| 29 | +directive(uri); |
| 30 | +return uri; |
| 31 | +} |
| 32 | +}// namespace uri |
| 33 | +}// namespace network |
| 34 | +}// namespace boost |
| 35 | + |
| 36 | + |
| 37 | +#endif// __BOOST_NETWORK_URI_DIRECTIVES_INC__ |