aboutsummaryrefslogtreecommitdiff
path: root/selectionhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'selectionhandler.h')
-rw-r--r--selectionhandler.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/selectionhandler.h b/selectionhandler.h
index 4c4a2ca..e5b9686 100644
--- a/selectionhandler.h
+++ b/selectionhandler.h
@@ -2,6 +2,7 @@
#define SELECTIONHANDLER_H
#include <QObject>
+#include <QSet>
#include <armadillo>
class SelectionHandler : public QObject
@@ -11,10 +12,10 @@ public:
SelectionHandler(const arma::uvec &sampleIndices);
signals:
- void selectionChanged(const arma::uvec &selection);
+ void selectionChanged(const QSet<int> &selection);
public slots:
- void setSelection(const arma::uvec &selection);
+ void setSelection(const QSet<int> &selection);
private:
arma::uvec m_sampleIndices;