ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Smersh/Smersh.hpp
Revision: 173
Committed: 2004-06-21T03:15:47-07:00 (21 years ago) by Douglas Thrift
File size: 808 byte(s)
Log Message:
Wow!

File Contents

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

Properties

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