diff options
author | Marius Kintel <marius@kintel.net> | 2010-11-06 15:04:03 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-11-06 15:04:03 (GMT) |
commit | c1c5d8174d0a0949dcd27ee6c32e3d237b244c73 (patch) | |
tree | ab2a6a611ca19da9d163025a50c483333179e24f /src/node.h | |
parent | eed6e69530486aa57a981940565ffc0013ef5bd7 (diff) |
doc and cosmetics
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -4,10 +4,6 @@ #include <QCache> #include <QVector> -#ifdef ENABLE_CGAL -#include "cgal.h" -#endif - #include "traverser.h" extern int progress_report_count; @@ -17,6 +13,13 @@ extern void *progress_report_vp; void progress_report_prep(AbstractNode *root, void (*f)(const class AbstractNode *node, void *vp, int mark), void *vp); void progress_report_fin(); +/*! + + The node tree is the result of evaluation of a module instantiation + tree. Both the module tree and the node tree are regenerated from + scratch for each compile. + + */ class AbstractNode { // FIXME: the idx_counter/idx is mostly (only?) for debugging. |