diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-10 06:12:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-10 06:12:07 -0400 |
| commit | 168fc950f9b15ce89084316d96a1f613a12e3013 (patch) | |
| tree | 73b1eb1afd04830e65c25060f1ce4763db98b642 /src/modinfo.h | |
| parent | 0f5ecb8b78b86f309be3ef1902dbf4ee51738fc4 (diff) | |
| parent | 4d3495b3fb00b644c57e773bbcdbfb2eee7c0ea6 (diff) | |
Merge pull request #863 from isanae/executables-fixes
Executables fixes
Diffstat (limited to 'src/modinfo.h')
| -rw-r--r-- | src/modinfo.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/modinfo.h b/src/modinfo.h index e395f45b..30a115c7 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -229,6 +229,18 @@ public: */ static ModInfo::Ptr createFromPlugin(const QString &modName, const QString &espName, const QStringList &bsaNames, ModInfo::EModType modType, MOShared::DirectoryEntry **directoryStructure, PluginContainer *pluginContainer); + // whether the given name is used for separators + // + static bool isSeparatorName(const QString& name); + + // whether the given name is used for backups + // + static bool isBackupName(const QString& name); + + // whether the given name is used for regular mods + // + static bool isRegularName(const QString& name); + /** * @brief retieve a name for one of the CONTENT_ enums * @param contentType the content value |
