diff options
author | Marius Kintel <marius@kintel.net> | 2010-09-07 00:02:22 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:39 (GMT) |
commit | fdcbb4cf9744151f901d6dba9f04a29c2ea75c92 (patch) | |
tree | 24330f1bedf104a15a1b5e11786f742af12ba495 /src/MainWindow.h | |
parent | 3f66c23731f0711dd1158f2cded7f0bf313617d4 (diff) |
Improved CSGTermRenderer to a testable point
Diffstat (limited to 'src/MainWindow.h')
-rw-r--r-- | src/MainWindow.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/MainWindow.h b/src/MainWindow.h index 132035a..f555906 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -9,6 +9,7 @@ #include "polyset.h" #include "Tree.h" #include <QPointer> +#include <vector> class MainWindow : public QMainWindow, public Ui::MainWindow { @@ -45,9 +46,9 @@ public: PolySet *cgal_ogl_ps; #endif - QVector<CSGTerm*> highlight_terms; + std::vector<CSGTerm*> highlight_terms; CSGChain *highlights_chain; - QVector<CSGTerm*> background_terms; + std::vector<CSGTerm*> background_terms; CSGChain *background_chain; QString last_compiled_doc; bool enableOpenCSG; |