Revision: | 21 |
Committed: | 2004-07-16T23:37:41-07:00 (20 years, 11 months ago) by douglas |
File size: | 421 byte(s) |
Log Message: | Database! |
# | Content |
---|---|
1 | // Zoe AIM Away Message RSS Feed Generator |
2 | // |
3 | // Seth King and Douglas Thrift |
4 | // |
5 | // $Id$ |
6 | |
7 | #include "Publisher.hpp" |
8 | |
9 | Publisher::Publisher(const std::set<Buddy>& buddies, const Database& database, |
10 | bool start) : buddies(buddies), database(database), start(start) |
11 | { |
12 | if (start) |
13 | { |
14 | publisher.Spawn(etl::Bind<0>(&Publisher::publish, this)); |
15 | } |
16 | } |
17 | |
18 | int Publisher::publish() |
19 | { |
20 | cerr << "Publisher::publish()\n"; |
21 | |
22 | // publish |
23 | } |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |