From 668058ed445d56fe46ac7d5e5c2c2cc65b4e1e4c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 25 May 2018 22:18:42 +0200 Subject: Store export path and prefix. --- src/project.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/project.h') 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; }; -- cgit v1.2.3