ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/FeepingCreaturism/FeepingCreaturism.hpp
Revision: 265
Committed: 2004-10-27T01:50:34-07:00 (20 years, 7 months ago) by Douglas Thrift
File size: 1258 byte(s)
Log Message:
No more pstreams, we have api::Process, fts functions weren't working so just
piped in find.

File Contents

# Content
1 // Feeping Creaturism
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _FeepingCreaturism_hpp_
8 #define _FeepingCreaturism_hpp_
9
10 #include <menes/platform.hpp>
11
12 #include <iostream>
13 #include <string>
14 #include <sstream>
15 #include <vector>
16 #include <set>
17 #include <map>
18 #include <algorithm>
19 #include <cstdlib>
20 #include <cstdio>
21 #include <ctime>
22 #include <cctype>
23
24 #include <menes-api/console.hpp>
25 #include <menes-api/process.hpp>
26 #include <menes-ext/string.hpp>
27 #include <menes-ios/helpers.hpp>
28 #include <menes-ios/string.hpp>
29 #include <menes-xml/document.hpp>
30 #include <menes-xml/nodeset.hpp>
31 #include <menes-xml/parse.hpp>
32
33 class FeepingCreaturism
34 {
35 private:
36 typedef std::pair<std::string, std::string> _P;
37 typedef std::multimap<std::string, std::string> _M;
38 struct CaseLess
39 {
40 bool operator()(const std::string& one, const std::string& two);
41 };
42 ext::String path, matcher;
43 std::set<std::string, CaseLess> jargon;
44 std::multimap<std::string, std::string> cgi;
45 void initialize();
46 void parse();
47 void daily(const ext::String& date);
48 void random(const ext::String& number);
49 void select(const ext::String& selection, bool validate = false);
50 public:
51 FeepingCreaturism();
52 ~FeepingCreaturism() {}
53 static ext::String program;
54 };
55
56 #endif // _FeepingCreaturism_hpp_

Properties

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