ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Smersh/Smersh.hpp
Revision: 199
Committed: 2004-08-30T18:24:07-07:00 (20 years, 9 months ago) by Douglas Thrift
File size: 948 byte(s)
Log Message:
What?

File Contents

# Content
1 // Smersh
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _Smersh_hpp_
8 #define _Smersh_hpp_
9
10 #include <menes/platform.hpp>
11
12 #include <iostream>
13 #include <string>
14 #include <sstream>
15 #include <fstream>
16 #include <vector>
17 #include <map>
18 #include <algorithm>
19 #include <cstdlib>
20 #include <cctype>
21 #include <ctime>
22
23 #include <menes-api/console.hpp>
24 #include <menes-ext/casts.hpp>
25 #include <menes-xml/document.hpp>
26 #include <menes-xml/nodeset.hpp>
27 #include <menes-xml/parse.hpp>
28
29 using namespace std;
30
31 extern string program;
32 extern bool debug;
33
34 #include "Environment.hpp"
35
36 class Person;
37
38 class Smersh
39 {
40 private:
41 static Environment env;
42 multimap<string, string> cgi;
43 void parse(istream& sin, const Environment& env);
44 void smersh(ostream& sout, const Environment& env);
45 void output(ostream& sout, const vector<Person>& people);
46 public:
47 Smersh(istream& sin = cin, ostream& sout = cout, const Environment& env =
48 env);
49 ~Smersh() {}
50 };
51
52 #endif // _Smersh_hpp_

Properties

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