2022-03-21 21:54:48 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ZResource.h"
|
|
|
|
#include "tinyxml2.h"
|
|
|
|
|
|
|
|
class ZString : public ZResource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ZString(ZFile* nParent);
|
|
|
|
|
|
|
|
void ParseRawData() override;
|
|
|
|
|
|
|
|
Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
|
2022-07-10 10:51:12 -04:00
|
|
|
std::string GetSourceOutputHeader(const std::string& prefix, std::set<std::string> *nameSet) override;
|
2022-03-21 21:54:48 -04:00
|
|
|
std::string GetSourceTypeName() const override;
|
|
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::vector<uint8_t> strData;
|
|
|
|
};
|