diff options
Diffstat (limited to 'src/doctree.hh')
-rw-r--r-- | src/doctree.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/doctree.hh b/src/doctree.hh index 53ae76e0..30762e44 100644 --- a/src/doctree.hh +++ b/src/doctree.hh @@ -1,12 +1,14 @@ #ifndef __DOCTREE_HH__ #define __DOCTREE_HH__ +#include "lout/misc.hh" + class DoctreeNode { public: int num; // unique ascending id int depth; int element; - const char *klass; + lout::misc::SimpleVector<char*> *klass; const char *pseudo; const char *id; }; |