diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-04-23 11:49:25 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-04-23 11:49:25 +0200 |
commit | c0c620e80f8c6398842a495ce62a5f1fb1aea8c0 (patch) | |
tree | c0936bc09e5d1e0e9439386ca3d9cbc1d60cc9a2 /src/doctree.hh | |
parent | 2bd0322811f55be14877508c630ea10950dcff22 (diff) |
comments
Diffstat (limited to 'src/doctree.hh')
-rw-r--r-- | src/doctree.hh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/doctree.hh b/src/doctree.hh index f74350b0..53ae76e0 100644 --- a/src/doctree.hh +++ b/src/doctree.hh @@ -11,6 +11,15 @@ class DoctreeNode { const char *id; }; +/** + * \brief HTML document tree interface. + * + * The Doctree class defines the interface to the parsed HTML document tree + * as it is used for CSS selector matching. + * Currently the Doctree can be represented as stack, however to support + * CSS adjacent siblings or for future JavaScript support it may have to + * be extended to a real tree. + */ class Doctree { public: virtual ~Doctree () {}; |