// Google Tron // // Douglas Thrift // // $Id$ #include #include #include #include #include "GoogleTron.hpp" #include "GzipWriter.hpp" int Main(const app::Options &options) { GoogleTron tron; return 0; } GoogleTron::GoogleTron() : finished(false) { } GoogleTron::~GoogleTron() { } int GoogleTron::Output() { _S gzip(_B("sitemap.gz")); _S writer(gzip); xml::ScopeElement urlset(writer, _B("urlset")); writer.SetAttribute(_B("xmlns"), _B("http://www.google.com/schemas/sitemap/0.84")); return 0; }