1 |
douglas |
5 |
// 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 |
douglas |
7 |
|
12 |
|
|
using std::cin; |
13 |
|
|
using std::cout; |
14 |
|
|
using std::cerr; |
15 |
|
|
|
16 |
douglas |
5 |
#include <vector> |
17 |
|
|
|
18 |
douglas |
8 |
#include <menes-api/console.hpp> |
19 |
douglas |
9 |
#include <menes-api/files.hpp> |
20 |
douglas |
7 |
#include <menes-ext/casts.hpp> |
21 |
|
|
#include <menes-ext/string.hpp> |
22 |
|
|
#include <menes-xml/document.hpp> |
23 |
|
|
#include <menes-xml/nodeset.hpp> |
24 |
|
|
#include <menes-xml/parse.hpp> |
25 |
douglas |
8 |
#include <menes-xml/textwriter.hpp> |
26 |
douglas |
7 |
|
27 |
|
|
class Zoe |
28 |
|
|
{ |
29 |
|
|
private: |
30 |
|
|
std::string login, password, rss; |
31 |
|
|
void configure(); |
32 |
|
|
public: |
33 |
|
|
Zoe(); |
34 |
|
|
~Zoe() {} |
35 |
|
|
static bool debug; |
36 |
|
|
static ext::String program, config; |
37 |
|
|
}; |
38 |
|
|
|
39 |
douglas |
5 |
#endif // _Zoe_hpp_ |