Represents the notion of a page that may be visited, and helps allow a way to track the path of pages...
std::string name
The page's name or title.
Page()=default
Constructs a page with no name.
Page(const std::string &t)
Constructs a page with the given name.
void title(const std::string &t)
Changes the name of the page.
const std::string & title() const
Returns the name or title of the page.