WiiWad: Move static implementation details to cpp file

These functions don't actually depend on any state from the class
instance, so they don't really belong in the header, and are just
an implementation detail.
This commit is contained in:
Lioncash
2016-09-25 17:24:44 -04:00
parent e7efbf7ae5
commit 7de0d51345
2 changed files with 29 additions and 28 deletions

View File

@ -28,8 +28,6 @@ public:
const std::vector<u8>& GetFooter() const { return m_footer; }
private:
bool ParseWAD(IBlobReader& reader);
static std::vector<u8> CreateWADEntry(IBlobReader& reader, u32 size, u64 offset);
static bool IsWiiWAD(const CBlobBigEndianReader& reader);
bool m_valid;