diff options
Diffstat (limited to 'src/filelist.h')
-rw-r--r-- | src/filelist.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/filelist.h b/src/filelist.h index 01cf684..e336bc1 100644 --- a/src/filelist.h +++ b/src/filelist.h @@ -31,12 +31,14 @@ #include <QAction> #include <QMenu> +class Instrument; + class FileList : public QListWidget { Q_OBJECT public: - FileList(); + FileList(Instrument& instrument); QString path; @@ -75,4 +77,5 @@ private: QAction* removeAllAction; QListWidgetItem* activeItem; + Instrument& instrument; }; |