diff options
| author | Tannin <devnull@localhost> | 2015-03-01 11:28:49 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2015-03-01 11:28:49 +0100 |
| commit | d08e0ebab09b0a71c3042cd20b8994ec1c10a525 (patch) | |
| tree | 326a75bae849f2e2ed42cba0914933437bb92f89 /src/iuserinterface.h | |
| parent | 6479f972dccaabb3afadb570583a4269e8a785e4 (diff) | |
- some fixes to how file changes are signaled and delayed
Diffstat (limited to 'src/iuserinterface.h')
| -rw-r--r-- | src/iuserinterface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/iuserinterface.h b/src/iuserinterface.h index ff683bce..bcf800b7 100644 --- a/src/iuserinterface.h +++ b/src/iuserinterface.h @@ -5,6 +5,7 @@ #include "modinfo.h"
#include <iplugintool.h>
#include <ipluginmodpage.h>
+#include <delayedfilewriter.h>
class IUserInterface
@@ -27,12 +28,13 @@ public: virtual void updateBSAList(const QStringList &defaultArchives, const QStringList &activeArchives) = 0;
- virtual bool saveArchiveList() = 0;
+ virtual MOBase::DelayedFileWriterBase &archivesWriter() = 0;
virtual void lock() = 0;
virtual void unlock() = 0;
virtual bool unlockClicked() = 0;
+
};
#endif // IUSERINTERFACE_H
|
