summaryrefslogtreecommitdiff
path: root/src/installationmanager.h
diff options
context:
space:
mode:
authorMikaƫl Capelle <capelle.mikael@gmail.com>2020-12-07 08:40:23 +0100
committerGitHub <noreply@github.com>2020-12-07 08:40:23 +0100
commit904264e231a9aef485025cb45f1eb006b017aa1a (patch)
treec3ff682de4ac4761b8d36f0e96a96dce6a034706 /src/installationmanager.h
parent0a6a5eb7868dde908e07ea12c7eb674b2063b950 (diff)
parent3264d7899e2560bce4591ab2142ee9d51bc7890c (diff)
Merge pull request #1313 from Holt59/load-plugin-without-restart
Implement loading/unloading of plugins without restarting
Diffstat (limited to 'src/installationmanager.h')
-rw-r--r--src/installationmanager.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/installationmanager.h b/src/installationmanager.h
index 2378178a..277c276a 100644
--- a/src/installationmanager.h
+++ b/src/installationmanager.h
@@ -129,12 +129,6 @@ public:
static QString getErrorString(Archive::Error errorCode);
/**
- * @brief register an installer-plugin
- * @param the installer to register
- */
- void registerInstaller(MOBase::IPluginInstaller *installer);
-
- /**
* @return the extensions of archives supported by this installation manager.
*/
QStringList getSupportedExtensions() const override;
@@ -256,13 +250,6 @@ signals:
private:
- struct ByPriority {
- bool operator()(MOBase::IPluginInstaller *LHS, MOBase::IPluginInstaller *RHS) const
- {
- return LHS->priority() > RHS->priority();
- }
- };
-
struct CaseInsensitive {
bool operator() (const QString &LHS, const QString &RHS) const
{
@@ -295,8 +282,6 @@ private:
QString m_ModsDirectory;
QString m_DownloadsDirectory;
- std::vector<MOBase::IPluginInstaller*> m_Installers;
-
// Archive management.
std::unique_ptr<Archive> m_ArchiveHandler;
QString m_CurrentFile;