SCRATCH move things to the right places

This commit is contained in:
Petr Mrázek
2015-02-04 21:10:10 +01:00
parent 473971b6e7
commit 141e0a02a0
49 changed files with 87 additions and 95 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include <QString>
#include <QFileInfo>
#include <QSet>
#include "Mod.h"
#include <functional>
class QuaZip;
namespace JarUtils
{
bool noFilter(QString);
bool metaInfFilter(QString key);
bool mergeZipFiles(QuaZip *into, QFileInfo from, QSet<QString> &contained,
std::function<bool(QString)> filter);
bool createModdedJar(QString sourceJarPath, QString targetJarPath, const QList<Mod>& mods);
}