// Blog // // Douglas Thrift // // $Id$ #ifndef _Blog_hpp_ #define _Blog_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include "Command.hpp" struct BlogCommand : public Command { BlogCommand(const cse::String &root) : Command(root) {} }; class Blog : public CommandRunner { void Entries(const api::Path &directory, const cse::String &base); public: Blog(const cse::String &sitemap, const cse::String &base, ext::Queue &queue, api::ThreadMutex &queueLock, const _R &command); }; #endif//_Blog_hpp_