aboutsummaryrefslogtreecommitdiff
path: root/src/form.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/form.hh')
-rw-r--r--src/form.hh25
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__ */