Mercurial > dillo_port1.3
comparison src/doctree.hh @ 1214:e9729d5a1416
support multiple classes per doctree node
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Sat, 11 Jul 2009 10:54:22 +0200 |
parents | a913df1621ac |
children | 9225a90ad7dd |
comparison
equal
deleted
inserted
replaced
1213:d805df86cc98 | 1214:e9729d5a1416 |
---|---|
1 #ifndef __DOCTREE_HH__ | 1 #ifndef __DOCTREE_HH__ |
2 #define __DOCTREE_HH__ | 2 #define __DOCTREE_HH__ |
3 | |
4 #include "lout/misc.hh" | |
3 | 5 |
4 class DoctreeNode { | 6 class DoctreeNode { |
5 public: | 7 public: |
6 int num; // unique ascending id | 8 int num; // unique ascending id |
7 int depth; | 9 int depth; |
8 int element; | 10 int element; |
9 const char *klass; | 11 lout::misc::SimpleVector<char*> *klass; |
10 const char *pseudo; | 12 const char *pseudo; |
11 const char *id; | 13 const char *id; |
12 }; | 14 }; |
13 | 15 |
14 /** | 16 /** |