mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
DiscIO: Prefix class member variables with "m_"
This commit is contained in:
parent
5cc0bda3d5
commit
1977ea42ae
17 changed files with 211 additions and 202 deletions
|
@ -16,17 +16,18 @@ namespace DiscIO
|
|||
|
||||
class PlainFileReader : public IBlobReader
|
||||
{
|
||||
PlainFileReader(std::FILE* file);
|
||||
|
||||
File::IOFile m_file;
|
||||
s64 m_size;
|
||||
|
||||
public:
|
||||
static PlainFileReader* Create(const std::string& filename);
|
||||
|
||||
u64 GetDataSize() const override { return m_size; }
|
||||
u64 GetRawSize() const override { return m_size; }
|
||||
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
||||
|
||||
private:
|
||||
PlainFileReader(std::FILE* file);
|
||||
|
||||
File::IOFile m_file;
|
||||
s64 m_size;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue