ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/GoogleTron/GoogleTron.cpp
Revision: 674
Committed: 2006-03-02T23:47:54-08:00 (19 years, 4 months ago) by douglas
File size: 451 byte(s)
Log Message:
Woo!

File Contents

# Content
1 // Google Tron
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #include <cxx/standard.hh>
8
9 #include <api/process.hpp>
10 #include <app/simple.hpp>
11 #include <xml/textwriter.hpp>
12
13 #include "GzipWriter.hpp"
14
15 int Main(const app::Options &options)
16 {
17 _S<GzipWriter> gzip(_B("sitemap.gz"));
18 _S<xml::TextWriter> writer(gzip);
19 xml::ScopeElement urlset(writer, _B("urlset"));
20
21 writer.SetAttribute(_B("xmlns"), _B("http://www.google.com/schemas/sitemap/0.84"));
22
23 return 0;
24 }

Properties

Name Value
svn:eol-style native
svn:keywords Id