Revision: | 126 |
Committed: | 2004-03-23T19:48:15-08:00 (21 years, 3 months ago) by Douglas Thrift |
Original Path: | SiteMapper/SiteMapper.hpp |
File size: | 396 byte(s) |
Log Message: | Fancy! |
# | 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 <sstream> |
14 | #include <vector> |
15 | #include <map> |
16 | #include <set> |
17 | |
18 | using namespace std; |
19 | |
20 | class SiteMapper |
21 | { |
22 | private: |
23 | // |
24 | public: |
25 | SiteMapper(const string& siteIndex, const string& siteMap); |
26 | ~SiteMapper() {} |
27 | }; |
28 | |
29 | #endif // _SiteMapper_hpp_ |