aboutsummaryrefslogtreecommitdiff
path: root/manipulationhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'manipulationhandler.h')
-rw-r--r--manipulationhandler.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/manipulationhandler.h b/manipulationhandler.h
index 9199c93..c208460 100644
--- a/manipulationhandler.h
+++ b/manipulationhandler.h
@@ -4,8 +4,6 @@
#include <QObject>
#include <armadillo>
-#include "projectionhistory.h"
-
class ManipulationHandler
: public QObject
{
@@ -20,8 +18,7 @@ public:
};
ManipulationHandler(const arma::mat &X,
- const arma::uvec &cpIndices,
- ProjectionHistory *history);
+ const arma::uvec &cpIndices);
void setTechnique(Technique technique) { m_technique = technique; }
@@ -34,7 +31,6 @@ public slots:
private:
arma::mat m_X;
arma::uvec m_cpIndices;
- ProjectionHistory *m_history;
Technique m_technique;
};