summaryrefslogtreecommitdiff
path: root/src/installationmanager.h
diff options
context:
space:
mode:
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;