boost::urls::url_base::remove_origin
Remove the origin component
Synopsis
Declared in <include/boost/url/url_base.hpp>
url_base&
remove_origin();
Description
This function removes the origin, which consists of the scheme and authority.
assert( url( "http://www.example.com/index.htm" ).remove_origin().buffer() == "/index.htm" );
this->scheme_id() == scheme::none && this->has_authority() == false
Throws nothing.
Created with MrDocs