ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/SiteMapperOld/SiteMapper.cpp
Revision: 126
Committed: 2004-03-23T19:48:15-08:00 (21 years, 3 months ago) by Douglas Thrift
Original Path: SiteMapper/SiteMapper.cpp
File size: 718 byte(s)
Log Message:
Fancy!

File Contents

# Content
1 // Site Mapper
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #include "SiteMapper.hpp"
8 #include "Matcher.hpp"
9
10 #include <xalanc/Include/PlatformDefinitions.hpp>
11 #include <xercesc/util/PlatformUtils.hpp>
12 #include <xalanc/XPath/XPathEvaluator.hpp>
13
14 XALAN_USING_XERCES(XMLPlatformUtils)
15 XALAN_USING_XALAN(XPathEvaluator)
16
17 int main(int argc, char* argv[])
18 {
19 string siteIndex, siteMap;
20
21 for (int index = 1; index < argc; argc++)
22 {
23 string arg = argv[index];
24
25 //
26 }
27
28 XMLPlatformUtils::Initialize();
29 XPathEvaluator::initialize();
30
31 SiteMapper mapper(siteIndex, siteMap);
32
33 XPathEvaluator::terminate();
34 XMLPlatformUtils::Terminate();
35
36 return 0;
37 }
38
39 SiteMapper::SiteMapper(const string& siteIndex, const string& siteMap)
40 {
41 //
42 }