diff options
author | Marius Kintel <marius@kintel.net> | 2010-03-30 20:49:41 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:35 (GMT) |
commit | eb81def6ebfa0997798808408e3d27f03eff1996 (patch) | |
tree | 6790ca7d2b5f37147b76d05bfd26305f03fd3d28 /test-code/CSGTextRenderer.h | |
parent | 398571275e58b4b17963db1d318dc4155d219da4 (diff) |
Compile fixes for test programs
Diffstat (limited to 'test-code/CSGTextRenderer.h')
-rw-r--r-- | test-code/CSGTextRenderer.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test-code/CSGTextRenderer.h b/test-code/CSGTextRenderer.h index 84f3d30..22d722f 100644 --- a/test-code/CSGTextRenderer.h +++ b/test-code/CSGTextRenderer.h @@ -25,8 +25,7 @@ public: virtual Response visit(const State &state, const TransformNode &node); virtual Response visit(const State &state, const AbstractPolyNode &node); - string getCGALMesh() const; -// CGAL_Nef_polyhedron getCGALMesh() const; + string getCSGString() const; private: void addToParent(const State &state, const AbstractNode &node); bool isCached(const AbstractNode &node); @@ -38,9 +37,7 @@ private: const AbstractNode *root; typedef list<pair<const AbstractNode *, QString> > ChildList; map<int, ChildList> visitedchildren; -// hashmap<string, CGAL_Nef_polyhedron> cache; - // For now use strings instead of Nef polyhedrons for testing caching QHash<QString, string> cache; const NodeCache<string> &dumpcache; }; |