summaryrefslogtreecommitdiff
path: root/src/project.h
diff options
context:
space:
mode:
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;
};