summaryrefslogtreecommitdiff
path: root/ZAPD/ZArray.h
blob: b78a8edfd844b58be1cb442dba2db9a7bd24f734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include <cstdint>
#include <string>
#include <vector>
#include "ZResource.h"
#include "tinyxml2.h"

class ZArray : public ZResource
{
public:
	ZArray(ZFile* nParent);
	~ZArray();

	void ParseXML(tinyxml2::XMLElement* reader) override;

	Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
	std::string GetBodySourceCode() const override;

	size_t GetRawDataSize() const override;

	std::string GetSourceTypeName() const override;
	ZResourceType GetResourceType() const override;

	DeclarationAlignment GetDeclarationAlignment() const override;

protected:
	size_t arrayCnt;
	std::string childName;
	std::vector<ZResource*> resList;
};