mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-29 12:04:29 +00:00
68899c2e33
subrepo: subdir: "tools/ZAPD" merged: "a3363333d" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "a3363333d" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
31 lines
687 B
C++
31 lines
687 B
C++
#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;
|
|
};
|