ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SiteMapper/Page.cpp
(Generate patch)

Comparing SiteMapper/Page.cpp (file contents):
Revision 128 by Douglas Thrift, 2004-03-23T22:15:08-08:00 vs.
Revision 129 by Douglas Thrift, 2004-03-23T22:49:41-08:00

# Line 4 | Line 4
4   //
5   // $Id$
6  
7 + #include "Matcher.hpp"
8   #include "Page.hpp"
9  
10   Page::Page(const string& address, const string& path, const string& title)
# Line 38 | Line 39 | void Page::setUrl(const string& url)
39          else
40          {
41                  cerr << program << ": Page.setUrl(" << url << ") failure.\n";
42 +
43 +                exit(1);
44          }
45   }
46 +
47 + bool Page::operator==(const string& thing)
48 + {
49 +        //
50 +
51 +        return false;
52 + }
53 +
54 + bool Page::operator==(Page& page)
55 + {
56 +        //
57 +
58 +        return false;
59 + }
60 +
61 + bool Page::operator<(Page& page)
62 + {
63 +        //
64 +
65 +        return false;
66 + }
67 +
68 + bool Page::operator>(Page& page)
69 + {
70 +        //
71 +
72 +        return false;
73 + }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines