summaryrefslogtreecommitdiff
path: root/src/project.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/project.h')
-rw-r--r--src/project.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/project.h b/src/project.h
index b3456f6..3e2b886 100644
--- a/src/project.h
+++ b/src/project.h
@@ -202,7 +202,10 @@ public:
void setExportPath(const QString& prefix);
QString getProjectDescription() const;
- void setProjectDescription(const QString& prefix);
+ void setProjectDescription(const QString& description);
+
+ double getProjectSamplerate() const;
+ void setProjectSamplerate(double samplerate);
Instrument& getInstrument(int id);
int createInstrument();
@@ -228,6 +231,7 @@ private:
QString raw_file_root;
QString export_path;
QString description;
+ double samplerate{-1.0};
std::list<Instrument> instruments;
std::list<Channel> channels;