// Site Mapper // // Douglas Thrift // // $Id$ #ifndef _SiteMapper_hpp_ #define _SiteMapper_hpp_ #include #include #include #include #include using namespace std; extern string program; extern bool debug; #include "Page.hpp" class SiteMapper { private: vector pages; set newPages; void oldMap(const string& siteMap); void index(const string& siteIndex); void newMap(const string& siteMap); public: SiteMapper(const string& siteIndex, const string& siteMap); ~SiteMapper() {} }; #endif // _SiteMapper_hpp_