diff options
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__ */ |