Question: Section A Design a class for representing a web URL. To keep this simple, consider a URL only to have a scheme, authority, and path


Section A Design a class for representing a web URL. To keep this simple, consider a URL only to have a scheme, authority, and path (you can use the same code you wrote in a previous project). Your class should have a constructor that takes a std::string as a parameter. You should not be able to edit (modify) the URL once it is created. You should have fourgetter functions which return the full URL as a string, and each of the three components individually also as strings. Add a non-member output stream overload for your URL class which takes a const URL reference and prints out the URL information in the following format: URL: https://example.com/ SCHEME: https AUTHORITY: example.com PATH: /
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
