1 |
douglas |
13 |
// Zoe AIM Away Message RSS Feed Generator |
2 |
|
|
// |
3 |
|
|
// Seth King and Douglas Thrift |
4 |
|
|
// |
5 |
|
|
// $Id$ |
6 |
|
|
|
7 |
|
|
#ifndef _Publisher_hpp_ |
8 |
|
|
#define _Publisher_hpp_ |
9 |
|
|
|
10 |
douglas |
21 |
#include "Zoe.hpp" |
11 |
douglas |
13 |
|
12 |
|
|
class Publisher |
13 |
|
|
{ |
14 |
|
|
private: |
15 |
douglas |
21 |
const std::set<Buddy>& buddies; |
16 |
|
|
const Database& database; |
17 |
douglas |
15 |
bool start; |
18 |
|
|
api::Thread publisher; |
19 |
douglas |
21 |
int publish(); |
20 |
douglas |
37 |
int update(); |
21 |
douglas |
13 |
public: |
22 |
douglas |
34 |
Publisher(const std::set<Buddy>& buddies, const Database& database, bool start); |
23 |
douglas |
15 |
~Publisher() { if (start) publisher.Join(); } |
24 |
douglas |
13 |
}; |
25 |
|
|
|
26 |
|
|
#endif // _Publisher_hpp_ |