diff options
author | randomdan <randomdan@localhost> | 2011-07-14 19:50:11 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-07-14 19:50:11 +0000 |
commit | e60392f554061de9ad7805f2b5165c58e39c77c6 (patch) | |
tree | 5dc1f6f9b8331a17e67863c847ea63ca97f5d92c /project2/transformHtml.h | |
parent | Fix unused_result warning when compiled with optimization enabled (diff) | |
download | project2-e60392f554061de9ad7805f2b5165c58e39c77c6.tar.bz2 project2-e60392f554061de9ad7805f2b5165c58e39c77c6.tar.xz project2-e60392f554061de9ad7805f2b5165c58e39c77c6.zip |
All new dynamic transformations and processing and tidyup and stuff
Diffstat (limited to 'project2/transformHtml.h')
-rw-r--r-- | project2/transformHtml.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/project2/transformHtml.h b/project2/transformHtml.h new file mode 100644 index 0000000..25bd0d5 --- /dev/null +++ b/project2/transformHtml.h @@ -0,0 +1,15 @@ +#ifndef HTMLDOCUMENT_H +#define HTMLDOCUMENT_H + +#include "transform.h" +#include <libxml/HTMLtree.h> + +class HtmlDocument; +class HtmlDocument : public SourceOf<HtmlDocument> { + public: + htmlDocPtr doc; + operator const HtmlDocument * () const { return this; } +}; + +#endif + |