ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/zoe/trunk/Publisher.cpp
Revision: 23
Committed: 2004-07-17T01:08:00-07:00 (20 years, 11 months ago) by douglas
File size: 449 byte(s)
Log Message:
Green means go!

File Contents

# 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 << bright << green << "Publisher::publish()\n" << reset;
21
22 // publish
23 }

Properties

Name Value
svn:eol-style native
svn:keywords Id