aboutsummaryrefslogtreecommitdiff
path: root/src/form.hh
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-06-05 15:12:04 +0200
committerjcid <devnull@localhost>2008-06-05 15:12:04 +0200
commit17b813d3c5a99f57d6e430261b8f969db21cf1d2 (patch)
treec359333714aa7d3dfa6b4af3808393caec4efd05 /src/form.hh
parentf0c0b60d8d0882fce0f42c8a6aa094ac13474143 (diff)
- html.cc cleanup (in progress). Source split.
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__ */