15 |
|
#include <algorithm> |
16 |
|
#include <cstdlib> |
17 |
|
#include <cctype> |
18 |
+ |
#include <ctime> |
19 |
|
|
20 |
|
#include <menes-ext/casts.hpp> |
21 |
|
#include <menes-xml/document.hpp> |
36 |
|
private: |
37 |
|
static Environment env; |
38 |
|
multimap<string, string> cgi; |
39 |
< |
void parse(istream& sin, Environment env); |
39 |
> |
void parse(istream& sin, const Environment& env); |
40 |
|
void smersh(ostream& sout); |
41 |
|
void output(ostream& sout, const vector<Person>& people); |
42 |
|
public: |
43 |
< |
Smersh(istream& sin = cin, ostream& sout = cout, Environment env = env); |
43 |
> |
Smersh(istream& sin = cin, ostream& sout = cout, const Environment& env = |
44 |
> |
env); |
45 |
|
~Smersh() {} |
46 |
|
}; |
47 |
|
|