1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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__ */