Revision: | 128 |
Committed: | 2004-03-23T22:15:08-08:00 (21 years, 3 months ago) by Douglas Thrift |
File size: | 464 byte(s) |
Log Message: | Moving right along! |
# | Content |
---|---|
1 | // Site Mapper |
2 | // |
3 | // Douglas Thrift |
4 | // |
5 | // $Id$ |
6 | |
7 | #ifndef _SiteMapper_hpp_ |
8 | #define _SiteMapper_hpp_ |
9 | |
10 | #include <iostream> |
11 | #include <fstream> |
12 | #include <string> |
13 | #include <vector> |
14 | #include <set> |
15 | |
16 | using namespace std; |
17 | |
18 | extern string program; |
19 | extern bool debug; |
20 | |
21 | #include "Page.hpp" |
22 | |
23 | class SiteMapper |
24 | { |
25 | private: |
26 | vector<Page> pages; |
27 | set<Page> newPages; |
28 | public: |
29 | SiteMapper(const string& siteIndex, const string& siteMap); |
30 | ~SiteMapper() {} |
31 | }; |
32 | |
33 | #endif // _SiteMapper_hpp_ |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |