summaryrefslogtreecommitdiff
path: root/ZAPD/ZFile.h
diff options
context:
space:
mode:
authorlouist103 <35883445+louist103@users.noreply.github.com>2021-05-08 12:27:38 -0400
committerGitHub <noreply@github.com>2021-05-08 12:27:38 -0400
commita357277e412b5e8f0f2f0578c7d7d213e8744c8d (patch)
tree353e7aa38aef392c6f337d6a1a04d3438f00def5 /ZAPD/ZFile.h
parent547c9b200d1dff745dee694c20a9f9e8e409a11d (diff)
Add const to most functions that need it and remove all "using namespace std" (#132)
* started on basic type errors * Done. For now * remove libgfxd binary * const * no more namespace std * revert alloca * re add a few missing consts
Diffstat (limited to 'ZAPD/ZFile.h')
-rw-r--r--ZAPD/ZFile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZFile.h b/ZAPD/ZFile.h
index 278c80c..a3765a0 100644
--- a/ZAPD/ZFile.h
+++ b/ZAPD/ZFile.h
@@ -43,7 +43,7 @@ public:
~ZFile();
std::string GetVarName(uint32_t address);
- std::string GetName();
+ std::string GetName() const;
const fs::path& GetXmlFilePath() const;
const std::vector<uint8_t>& GetRawData() const;
void ExtractResources(fs::path outputDir);