summaryrefslogtreecommitdiff
path: root/ZAPD/FileWorker.h
blob: 273e8b867bb894fd2bf1caf164026b6de89a2b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <map>
#include <string>
#include <vector>
#include "ZFile.h"

class FileWorker
{
public:
	std::vector<ZFile*> files;
	std::vector<ZFile*> externalFiles;
	std::vector<int32_t> segments;
	std::vector<ZFile*> segmentFiles;
	std::map<int32_t, std::vector<ZFile*>> segmentRefFiles;
};