diff options
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; }; |