#1665 Add replaceCase command to command file interface

This commit is contained in:
Bjørnar Grip Fjær
2017-07-28 11:28:55 +02:00
parent 865238bc71
commit c02c39d59d
8 changed files with 141 additions and 11 deletions

View File

@@ -39,7 +39,9 @@ public:
void executeCommands(QTextStream& stream);
void setExportPath(ExportType type, QString path);
QString getExportPath(ExportType type);
QString getExportPath(ExportType type) const;
void setLastProjectPath(const QString& path);
QString getLastProjectPath() const;
static RicfCommandFileExecutor* instance();
@@ -47,4 +49,5 @@ private:
RicfMessages m_messages;
std::map<ExportType, QString> m_exportPaths;
QString m_lastProjectPath;
};