summaryrefslogtreecommitdiff
path: root/src/project.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-05-16 20:19:09 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-05-16 20:19:09 +0200
commit8a3a2834b84ba9cdb4b9c505b124774f14034d27 (patch)
treefa361c19792ca6580135197db7672fc5fa7cf911 /src/project.h
parent2840e3b4047fd0987095fb17ecbb154def019a2d (diff)
Store file list in instrument and make initial connections fomr UI connections to project storage.
Diffstat (limited to 'src/project.h')
-rw-r--r--src/project.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/project.h b/src/project.h
index 2124730..27fa0b5 100644
--- a/src/project.h
+++ b/src/project.h
@@ -31,6 +31,8 @@
#include <QObject>
#include <QString>
+#include "audioextractor.h"
+
class Project;
class Instrument
@@ -43,11 +45,19 @@ public:
QString getInstrumentName() const;
void setInstrumentName(const QString& instrument_name);
+ QString getMasterFile() const;
+ void setMasterFile(const QString& master_file);
+
+ AudioFileList getFileList() const;
+ void setFileList(const AudioFileList& file_list);
+
private:
friend class ProjectSerialiser;
int id;
QString instrument_name;
+ QString master_file;
+ AudioFileList file_list;
Project& project;
};