ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Smersh/Smersh.hpp
Revision: 185
Committed: 2004-07-19T00:41:05-07:00 (20 years, 11 months ago) by Douglas Thrift
File size: 917 byte(s)
Log Message:
Menes API Update.

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 <fstream>
14 #include <vector>
15 #include <map>
16 #include <algorithm>
17 #include <cstdlib>
18 #include <cctype>
19 #include <ctime>
20
21 #include <menes-api/console.hpp>
22 #include <menes-ext/casts.hpp>
23 #include <menes-xml/document.hpp>
24 #include <menes-xml/nodeset.hpp>
25 #include <menes-xml/parse.hpp>
26
27 using namespace std;
28
29 extern string program;
30 extern bool debug;
31
32 #include "Environment.hpp"
33
34 class Person;
35
36 class Smersh
37 {
38 private:
39 static Environment env;
40 multimap<string, string> cgi;
41 void parse(istream& sin, const Environment& env);
42 void smersh(ostream& sout, const Environment& env);
43 void output(ostream& sout, const vector<Person>& people);
44 public:
45 Smersh(istream& sin = cin, ostream& sout = cout, const Environment& env =
46 env);
47 ~Smersh() {}
48 };
49
50 #endif // _Smersh_hpp_

Properties

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