Revision: | 12 |
Committed: | 2004-07-11T20:45:38-07:00 (20 years, 11 months ago) by douglas |
File size: | 407 byte(s) |
Log Message: | This might make more sense for a feed per buddy. |
# | User | Rev | Content |
---|---|---|---|
1 | douglas | 12 | // Zoe AIM Away Message RSS Feed Generator |
2 | // | ||
3 | // Seth King and Douglas Thrift | ||
4 | // | ||
5 | // $Id$ | ||
6 | |||
7 | #ifndef _Buddy_hpp_ | ||
8 | #define _Buddy_hpp_ | ||
9 | |||
10 | #include "Zoe.hpp" | ||
11 | |||
12 | class Buddy | ||
13 | { | ||
14 | private: | ||
15 | ext::String login, rss; | ||
16 | public: | ||
17 | Buddy(const ext::String& login, const ext::String& rss) : login(login), | ||
18 | rss(rss) {} | ||
19 | ~Buddy() {} | ||
20 | bool operator<(const Buddy& buddy) const { return login < buddy.login; } | ||
21 | }; | ||
22 | |||
23 | #endif // _Buddy_hpp_ |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |