// Douglas Thrift // // Command // // $Id$ #ifndef _Command_hpp_ #define _Command_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include #include // XXX: no ext::Queue yet :( #include "Url.hpp" class Command : public ext::ReferenceCounted {}; class CommandRunner { protected: const cse::String &sitemap; std::queue &queue; api::ThreadMutex &queueLock; CommandRunner(const cse::String &sitemap, std::queue &queue, api::ThreadMutex &queueLock) : sitemap(sitemap), queue(queue), queueLock(queueLock) {} }; #endif//_Command_hpp_