diff options
author | jcid <devnull@localhost> | 2008-06-05 15:12:04 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-06-05 15:12:04 +0200 |
commit | 17b813d3c5a99f57d6e430261b8f969db21cf1d2 (patch) | |
tree | c359333714aa7d3dfa6b4af3808393caec4efd05 /src/form.hh | |
parent | f0c0b60d8d0882fce0f42c8a6aa094ac13474143 (diff) |
- html.cc cleanup (in progress). Source split.
Diffstat (limited to 'src/form.hh')
-rw-r--r-- | src/form.hh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/form.hh b/src/form.hh new file mode 100644 index 00000000..291bfd75 --- /dev/null +++ b/src/form.hh @@ -0,0 +1,25 @@ +#ifndef __FORM_HH__ +#define __FORM_HH__ + +/* + * Typedefs + */ + +typedef enum { + DILLO_HTML_METHOD_UNKNOWN, + DILLO_HTML_METHOD_GET, + DILLO_HTML_METHOD_POST +} DilloHtmlMethod; + +typedef enum { + DILLO_HTML_ENC_URLENCODING, + DILLO_HTML_ENC_MULTIPART +} DilloHtmlEnc; + +/* + * Classes + */ + +class DilloHtmlForm; + +#endif /* __FORM_HH__ */ |