15 |
|
|
16 |
|
#include <menes-api/console.hpp> |
17 |
|
#include <menes-ios/string.hpp> |
18 |
+ |
#include <menes-xml/textwriter.hpp> |
19 |
|
|
20 |
< |
#define _sforeach(type, item, set) \ |
20 |
< |
for (bool _stop(true); _stop; ) \ |
21 |
< |
for (const type& _set = set; _stop; _stop = false) \ |
22 |
< |
_for (type::const_iterator, item, _set.begin(), _set.end()) |
20 |
> |
#include <map> |
21 |
|
|
22 |
|
class Represent |
23 |
|
{ |
24 |
|
private: |
25 |
+ |
std::multimap<std::string, std::string> cgi; |
26 |
+ |
void parse(); |
27 |
+ |
void headings(xml::TextWriter& xhtml); |
28 |
+ |
void form(xml::TextWriter& xhtml); |
29 |
|
public: |
30 |
|
Represent(); |
31 |
|
}; |