From 791221e923586bb717396ecf18bd13e57034df99 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Tue, 27 Jan 2015 22:31:07 +0100 Subject: NOISSUE Refactors and moving of things --- logic/minecraft/VersionPatch.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 logic/minecraft/VersionPatch.h (limited to 'logic/minecraft/VersionPatch.h') diff --git a/logic/minecraft/VersionPatch.h b/logic/minecraft/VersionPatch.h deleted file mode 100644 index 6c7bd7cf..00000000 --- a/logic/minecraft/VersionPatch.h +++ /dev/null @@ -1,32 +0,0 @@ -#pragma once - -#include -#include -#include "JarMod.h" - -class InstanceVersion; -class VersionPatch -{ -public: - virtual ~VersionPatch(){}; - virtual void applyTo(InstanceVersion *version) = 0; - - virtual bool isMinecraftVersion() = 0; - virtual bool hasJarMods() = 0; - virtual QList getJarMods() = 0; - - virtual bool isMoveable() - { - return getOrder() >= 0; - } - virtual void setOrder(int order) = 0; - virtual int getOrder() = 0; - - virtual QString getPatchID() = 0; - virtual QString getPatchName() = 0; - virtual QString getPatchVersion() = 0; - virtual QString getPatchFilename() = 0; - virtual bool isCustom() = 0; -}; - -typedef std::shared_ptr VersionPatchPtr; -- cgit