// Zoe AIM Away Message RSS Feed Generator // // Seth King and Douglas Thrift // // $Id$ #ifndef _Publisher_hpp_ #define _Publisher_hpp_ #include "AwayMessage.hpp" class Publisher { private: bool start; api::Thread publisher; int publish(const std::set& buddies); public: Publisher(const std::set& buddies, bool start); ~Publisher() { if (start) publisher.Join(); } // }; #endif // _Publisher_hpp_