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

Comparing SiteMapper/SiteMapper.hpp (file contents):
Revision 154 by Douglas Thrift, 2004-06-04T02:40:33-07:00 vs.
Revision 312 by douglas, 2004-12-13T15:01:12-08:00

# Line 7 | Line 7
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 <
17 < using namespace std;
10 > #include <menes/platform.hpp>
11  
12 + #ifdef MENES_PRAGMA_ONCE
13 + #pragma once
14 + #endif
15 +
16 + #ifdef _WIN32
17 + #pragma warning(disable:4267)
18 + #endif
19 +
20 + #include <menes-api/console.hpp>
21 + #include <menes-api/files.hpp>
22 + #include <menes-ios/string.hpp>
23   #include <menes-xml/document.hpp>
24   #include <menes-xml/nodeset.hpp>
25   #include <menes-xml/parse.hpp>
26 + #include <menes-xml/textwriter.hpp>
27 +
28 + #include <string>
29 + #include <map>
30  
31 < extern string program;
31 > extern ext::String program;
32   extern bool debug;
33  
34   #include "Page.hpp"
# Line 28 | Line 36 | extern bool debug;
36   class SiteMapper
37   {
38   private:
39 <        string comment;
40 <        vector<Page> pages;
41 <        map<string, multimap<string, Page> > newPages;
42 <        void oldMap(const string& siteMap);
43 <        void oldMap(vector<Page>& pages, xml::Node* list);
44 <        void newIndex(const string& siteIndex);
45 <        bool newIndex(vector<Page>& pages, Page& page);
46 <        void newMap(const string& siteMap);
47 <        void newMap(vector<Page>& pages, const string& childOf, multimap<string,
40 <                Page>& newPages);
39 >        ext::String comment;
40 >        ext::Vector<Page> pages;
41 >        std::map<std::string, std::multimap<std::string, Page> > newPages;
42 >        void oldMap(const ext::String& siteMap);
43 >        void oldMap(ext::Vector<Page>& pages, xml::Node* list);
44 >        void newIndex(const ext::String& siteIndex);
45 >        bool newIndex(ext::Vector<Page>& pages, Page& page);
46 >        void newMap(const ext::String& siteMap);
47 >        void newMap(ext::Vector<Page>& pages, const ext::String& childOf, std::multimap<std::string, Page>& newPages);
48   public:
49 <        SiteMapper(const string& siteIndex, const string& siteMap);
49 >        SiteMapper(const ext::String& siteIndex, const ext::String& siteMap);
50          ~SiteMapper() {}
51   };
52  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines