1 |
// Represent |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#ifndef _Represent_hpp_ |
8 |
#define _Represent_hpp_ |
9 |
|
10 |
#include <menes/platform.hpp> |
11 |
|
12 |
#ifdef MENES_PRAGMA_ONCE |
13 |
#pragma once |
14 |
#endif |
15 |
|
16 |
#include <menes-api/console.hpp> |
17 |
#include <menes-ios/string.hpp> |
18 |
#include <menes-xml/textwriter.hpp> |
19 |
|
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 |
}; |
32 |
|
33 |
#endif // _Represent_hpp_ |