# | Line 12 | Line 12 | |
---|---|---|
12 | #include <iostream> | |
13 | #include <string> | |
14 | #include <sstream> | |
15 | + | #include <list> |
16 | #include <map> | |
17 | #include <cstdlib> | |
18 | #include <ctime> | |
# | Line 45 | Line 46 | class HostStatus | |
46 | { | |
47 | private: | |
48 | multimap<string, string> cgi; | |
49 | < | enum Format {page, table}; |
49 | < | Format format; |
49 | > | bool page; |
50 | void parse(const string& method); | |
51 | void display(const string& method); | |
52 | + | void header(); |
53 | + | void footer(); |
54 | public: | |
55 | HostStatus(); | |
56 | ~HostStatus() {} |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |