diff options
author | jcid <devnull@localhost> | 2008-06-21 00:35:56 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-06-21 00:35:56 +0200 |
commit | 23f4002535da107fc5d020dc1a020fe1d5fa042a (patch) | |
tree | c2d48f69893ce86ea49a5fab739a5dd12ddf4047 /src/table.hh | |
parent | c0e13375ae537ac98f778e18a1c4f19c7f3f3fcf (diff) |
- Added table.cc and table.hh
Diffstat (limited to 'src/table.hh')
-rw-r--r-- | src/table.hh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/table.hh b/src/table.hh new file mode 100644 index 00000000..8068c184 --- /dev/null +++ b/src/table.hh @@ -0,0 +1,19 @@ +#ifndef __TABLE_HH__ +#define __TABLE_HH__ + +/* + * Classes + */ + +class DilloHtml; + +/* + * Table parsing functions + */ + +void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize); + +#endif /* __TABLE_HH__ */ |