diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-30 23:36:30 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-30 23:36:30 (GMT) |
commit | 84e98b178ad60b22ae6a3b60ea3f6296b1f71989 (patch) | |
tree | 6fba1e961976c3e8fc16e5b6c44afd64d4b2ae14 /src/PolySetEvaluator.h | |
parent | 0c2053caf9c7e521c31bbf603e8a1980d2eee3b2 (diff) |
Cleaned up some unnecessary includes
Diffstat (limited to 'src/PolySetEvaluator.h')
-rw-r--r-- | src/PolySetEvaluator.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/PolySetEvaluator.h b/src/PolySetEvaluator.h index 8d7d1a8..348cbba 100644 --- a/src/PolySetEvaluator.h +++ b/src/PolySetEvaluator.h @@ -1,19 +1,17 @@ #ifndef POLYSETEVALUATOR_H_ #define POLYSETEVALUATOR_H_ -#include "node.h" -#include "Tree.h" #include "memory.h" class PolySetEvaluator { public: - PolySetEvaluator(const Tree &tree) : tree(tree) {} + PolySetEvaluator(const class Tree &tree) : tree(tree) {} virtual ~PolySetEvaluator() {} const Tree &getTree() const { return this->tree; } - virtual shared_ptr<PolySet> getPolySet(const class AbstractNode &, bool cache); + virtual shared_ptr<class PolySet> getPolySet(const class AbstractNode &, bool cache); virtual PolySet *evaluatePolySet(const class ProjectionNode &) { return NULL; } virtual PolySet *evaluatePolySet(const class LinearExtrudeNode &) { return NULL; } |