// Zoe AIM Away Message RSS Feed Generator // // Seth King and Douglas Thrift // // $Id$ #ifndef _Buddy_hpp_ #define _Buddy_hpp_ #include "Zoe.hpp" class Buddy { private: ext::String login, rss; public: Buddy(const ext::String& login, const ext::String& rss) : login(login), rss(rss) {} ~Buddy() {} bool operator<(const Buddy& buddy) const { return login < buddy.login; } }; #endif // _Buddy_hpp_