// Zoe AIM Away Message RSS Feed Generator // // Seth King and Douglas Thrift // // $Id$ #ifndef _Publisher_hpp_ #define _Publisher_hpp_ #include "Zoe.hpp" class Publisher { private: const std::set& buddies; const Database& database; bool start; void publish(); public: Publisher(const std::set& buddies, const Database& database, bool start); }; #endif // _Publisher_hpp_