diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-05-25 22:18:42 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-05-25 22:18:42 +0200 |
commit | 668058ed445d56fe46ac7d5e5c2c2cc65b4e1e4c (patch) | |
tree | 8644e63ca3ab413150376fa5bfdd9985968f63fe /src/project.h | |
parent | cb896a4fa1acd9167d3e7ee9f6336a63309eebde (diff) |
Store export path and prefix.
Diffstat (limited to 'src/project.h')
-rw-r--r-- | src/project.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/project.h b/src/project.h index 725e936..98be92a 100644 --- a/src/project.h +++ b/src/project.h @@ -73,6 +73,12 @@ public: Selections getSelections() const; void setSelections(const Selections& selectios); + QString getPrefix() const; + void setPrefix(const QString& prefix); + + QString getExportPath() const; + void setExportPath(const QString& prefix); + Project& getProject(); private: @@ -98,6 +104,10 @@ private: // Edit tab Selections selections; + // Export tab + QString prefix; + QString export_path; + Project& project; }; |