mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
clang-modernize -add-override
This commit is contained in:
@ -22,19 +22,19 @@ class CVolumeGC : public IVolume
|
||||
public:
|
||||
CVolumeGC(IBlobReader* _pReader);
|
||||
~CVolumeGC();
|
||||
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer) const;
|
||||
bool RAWRead(u64 _Offset, u64 _Length, u8* _pBuffer) const;
|
||||
std::string GetUniqueID() const;
|
||||
std::string GetRevisionSpecificUniqueID() const;
|
||||
std::string GetMakerID() const;
|
||||
int GetRevision() const;
|
||||
std::vector<std::string> GetNames() const;
|
||||
u32 GetFSTSize() const;
|
||||
std::string GetApploaderDate() const;
|
||||
ECountry GetCountry() const;
|
||||
u64 GetSize() const;
|
||||
u64 GetRawSize() const;
|
||||
bool IsDiscTwo() const;
|
||||
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer) const override;
|
||||
bool RAWRead(u64 _Offset, u64 _Length, u8* _pBuffer) const override;
|
||||
std::string GetUniqueID() const override;
|
||||
std::string GetRevisionSpecificUniqueID() const override;
|
||||
std::string GetMakerID() const override;
|
||||
int GetRevision() const override;
|
||||
std::vector<std::string> GetNames() const override;
|
||||
u32 GetFSTSize() const override;
|
||||
std::string GetApploaderDate() const override;
|
||||
ECountry GetCountry() const override;
|
||||
u64 GetSize() const override;
|
||||
u64 GetRawSize() const override;
|
||||
bool IsDiscTwo() const override;
|
||||
|
||||
typedef std::string(*StringDecoder)(const std::string&);
|
||||
|
||||
|
Reference in New Issue
Block a user