ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SiteMapper/Page.hpp
Revision: 559
Committed: 2005-07-17T04:58:55-07:00 (19 years, 11 months ago) by douglas
File size: 1741 byte(s)
Log Message:
Woo!

File Contents

# User Rev Content
1 Douglas Thrift 128 // Site Mapper
2     //
3     // Douglas Thrift
4     //
5     // $Id$
6    
7     #ifndef _Page_hpp_
8     #define _Page_hpp_
9    
10 douglas 299 #ifdef MENES_PRAGMA_ONCE
11     #pragma once
12     #endif
13    
14 Douglas Thrift 140 class Matcher;
15    
16 Douglas Thrift 128 class Page
17     {
18     private:
19 douglas 559 cse::String address, path, title;
20 douglas 285 ext::Vector<Page> children;
21 douglas 559 cse::String childOf;
22 Douglas Thrift 128 public:
23 douglas 285 Page() {}
24 douglas 559 Page(const cse::String& address, const cse::String& path, const cse::String& title) : address(address), path(path), title(title) {}
25     Page(const cse::String& url, const cse::String& title) : title(title) { SetUrl(url); }
26 Douglas Thrift 128 ~Page() {}
27 douglas 559 cse::String& GetAddress() { return address; }
28     cse::String& GetPath() { return path; }
29     cse::String& GetTitle() { return title; }
30     ext::Vector<Page>& GetChildren() { return children; }
31     cse::String& GetChildOf() { return childOf; }
32     cse::String GetUrl() const { return _S<ios::String>() << _B("http://") << address << path; }
33     void SetAddress(const cse::String& address) { this->address = address; }
34     void SetPath(const cse::String& path) { this->path = path; }
35     void SetTitle(const cse::String& title) { this->title = title; }
36     void SetChildren(ext::Vector<Page>& children) { this->children = children; }
37     void SetChildOf(const cse::String& childOf) { this->childOf = childOf; }
38     void SetUrl(const cse::String& url);
39     bool operator==(const cse::String& thing);
40 Douglas Thrift 140 bool operator==(const Page& page) const;
41 douglas 559 bool operator!=(const cse::String& thing) { return !(*this == thing); }
42 Douglas Thrift 140 bool operator!=(const Page& page) const { return !(*this == page); }
43 Douglas Thrift 128 // friends:
44 douglas 559 friend bool operator==(const cse::String& thing, Page& page) { return page == thing; }
45     friend bool operator!=(const cse::String& thing, Page& page) { return page != thing; }
46 douglas 285 friend xml::TextWriter& operator<<(xml::TextWriter& xml, Page& page);
47 Douglas Thrift 128 };
48    
49     #endif // _Page_hpp_

Properties

Name Value
svn:eol-style native
svn:keywords Id