summaryrefslogtreecommitdiff
path: root/src/pluginlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pluginlist.h')
-rw-r--r--src/pluginlist.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h
index 0588b4d7..41a7d634 100644
--- a/src/pluginlist.h
+++ b/src/pluginlist.h
@@ -242,6 +242,7 @@ public:
bool isMasterFlagged(const QString& name) const;
bool isMediumFlagged(const QString& name) const;
bool isLightFlagged(const QString& name) const;
+ bool isBlueprintFlagged(const QString& name) const;
bool hasNoRecords(const QString& name) const;
QString author(const QString& name) const;
@@ -320,7 +321,7 @@ private:
ESPInfo(const QString& name, bool forceLoaded, bool forceEnabled,
bool forceDisabled, const QString& originName, const QString& fullPath,
bool hasIni, std::set<QString> archives, bool lightSupported,
- bool mediumSupported);
+ bool mediumSupported, bool blueprintSupported);
QString name;
QString fullPath;
@@ -338,6 +339,7 @@ private:
bool isMasterFlagged;
bool isMediumFlagged;
bool isLightFlagged;
+ bool isBlueprintFlagged;
bool hasNoRecords;
bool modSelected;
QString author;