diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2015-09-24 14:47:51 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2015-09-24 14:47:51 -0300 |
commit | 0ff5553653bbfd0e773970b78bee356543c2bf74 (patch) | |
tree | 8bbd17688afe9c5d3dbe84d4b1feb74496aac174 /selectionhandler.h | |
parent | d0aec5a4070c9140228ec6e17e22a99588e6d12d (diff) |
Updated selection handling code; implemented option to save subsample plot.
Diffstat (limited to 'selectionhandler.h')
-rw-r--r-- | selectionhandler.h | 5 |
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; |