UE 0.10.1

- Extract only by listed file GUIDs is now possible for UE
- Postcodes must be hexadecimal
This commit is contained in:
Nikolaj Schlej 2015-05-17 11:45:32 +02:00
parent 8f7cc0d20e
commit 6a63d1f431
4 changed files with 67 additions and 44 deletions

View file

@ -23,6 +23,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include "../common/basetypes.h"
#include "../common/treemodel.h"
#include "../common/ffs.h"
class FfsDumper : public QObject
{
@ -31,11 +32,11 @@ class FfsDumper : public QObject
public:
explicit FfsDumper(TreeModel * treeModel, QObject *parent = 0);
~FfsDumper();
STATUS dump(const QModelIndex & root, const QString & path);
STATUS dump(const QModelIndex & root, const QString & path, const QString & guid = QString());
private:
STATUS recursiveDump(const QModelIndex & root, const QString & path);
STATUS recursiveDump(const QModelIndex & root, const QString & path, const QString & guid);
TreeModel* model;
bool dumped;
};