--- SiteMapper/Page.cpp 2004/03/24 06:15:08 128 +++ SiteMapper/Page.cpp 2004/03/24 06:49:41 129 @@ -4,6 +4,7 @@ // // $Id$ +#include "Matcher.hpp" #include "Page.hpp" Page::Page(const string& address, const string& path, const string& title) @@ -38,5 +39,35 @@ void Page::setUrl(const string& url) else { cerr << program << ": Page.setUrl(" << url << ") failure.\n"; + + exit(1); } } + +bool Page::operator==(const string& thing) +{ + // + + return false; +} + +bool Page::operator==(Page& page) +{ + // + + return false; +} + +bool Page::operator<(Page& page) +{ + // + + return false; +} + +bool Page::operator>(Page& page) +{ + // + + return false; +}