diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2020-09-20 19:06:10 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2020-09-20 19:06:10 -0500 |
| commit | dbe27903f406d269e94631d142d5f1b636289e79 (patch) | |
| tree | a39ddaed682be62999ceff909d5d1380c221e9b2 /src/modinforegular.h | |
| parent | 4d6f43926b5e37ed97d2c4066c21e609f5ceb537 (diff) | |
| parent | 35500736ab60ed1b30d5592e6edb5d38b57c66a0 (diff) | |
Merge remote-tracking branch 'origin/master' into master
Diffstat (limited to 'src/modinforegular.h')
| -rw-r--r-- | src/modinforegular.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/modinforegular.h b/src/modinforegular.h index 7e70631e..345c4b6e 100644 --- a/src/modinforegular.h +++ b/src/modinforegular.h @@ -402,6 +402,12 @@ public: virtual void setCustomURL(QString const &) override; virtual QString getCustomURL() const override; +public: // Plugin operations: + + virtual QVariant pluginSetting(const QString& pluginName, const QString& key, const QVariant& defaultValue) const override; + virtual std::map<QString, QVariant> pluginSettings(const QString& pluginName) const override; + virtual bool setPluginSetting(const QString& pluginName, const QString& key, const QVariant& value) override; + private: void setEndorsedState(EEndorsedState endorsedState); @@ -449,6 +455,9 @@ private: int m_NexusID; std::set<std::pair<int, int>> m_InstalledFileIDs; + // List of plugin settings: + std::map<QString, std::map<QString, QVariant>> m_PluginSettings; + bool m_MetaInfoChanged; bool m_IsAlternate; bool m_Converted; |
