ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/zoe/trunk/Zoe.hpp
Revision: 15
Committed: 2004-07-13T20:14:49-07:00 (20 years, 11 months ago) by douglas
File size: 1040 byte(s)
Log Message:
Did stuff, added password prompt, added initial net::Oscar stuff, added threads.

File Contents

# Content
1 // Zoe AIM Away Message RSS Feed Generator
2 //
3 // Seth King and Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _Zoe_hpp_
8 #define _Zoe_hpp_
9
10 #include <iostream>
11
12 using std::cin;
13 using std::cout;
14 using std::cerr;
15
16 #include <map>
17 #include <set>
18 #include <vector>
19
20 #include <menes-api/console.hpp>
21 #include <menes-api/files.hpp>
22 #include <menes-etl/fnbind.hpp>
23 #include <menes-ext/casts.hpp>
24 #include <menes-ext/string.hpp>
25 #include <menes-net/oscar/session.hpp>
26 #include <menes-net/oscar/tools/auth.hpp>
27 #include <menes-net/oscar/tools/buddy.hpp>
28 #include <menes-net/oscar/tools/chat.hpp>
29 #include <menes-net/oscar/tools/icbm.hpp>
30 #include <menes-net/oscar/tools/info.hpp>
31 #include <menes-xml/document.hpp>
32 #include <menes-xml/nodeset.hpp>
33 #include <menes-xml/parse.hpp>
34 #include <menes-xml/textwriter.hpp>
35
36 #include "Buddy.hpp"
37
38 class Zoe
39 {
40 private:
41 ext::String login, password;
42 std::set<Buddy> buddies;
43 void configure();
44 public:
45 Zoe();
46 ~Zoe() {}
47 static bool debug, collector, publisher;
48 static ext::String program, config;
49 };
50
51 #endif // _Zoe_hpp_

Properties

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