Reformat the code, using:

find -type f |  # list all regular files
  grep -E '\.(h|cpp|mm)$' |  # filter for source files
  grep -v '/mt_' |  # filter out generated files
  grep -v '/vendor/' | # and vendored GL
  grep -v '/test/image_loader_test.cpp' |  # and this file (has giant literals arrays)
  xargs -n 1 -P $(nproc) clang-format -i  # reformat everything

Co-authored-by: numzero <numzer0@yandex.ru>
This commit is contained in:
Desour
2024-03-20 19:35:52 +01:00
parent eb4dec46c2
commit 2bf1d12353
292 changed files with 37376 additions and 42421 deletions

View File

@ -14,57 +14,54 @@ namespace irr
namespace io
{
/*!
Class for reading a real file from disk.
*/
class CReadFile : public IReadFile
/*!
Class for reading a real file from disk.
*/
class CReadFile : public IReadFile
{
public:
CReadFile(const io::path &fileName);
virtual ~CReadFile();
//! returns how much was read
size_t read(void *buffer, size_t sizeToRead) override;
//! changes position in file, returns true if successful
bool seek(long finalPos, bool relativeMovement = false) override;
//! returns size of file
long getSize() const override;
//! returns if file is open
bool isOpen() const
{
public:
return File != 0;
}
CReadFile(const io::path& fileName);
//! returns where in the file we are.
long getPos() const override;
virtual ~CReadFile();
//! returns name of file
const io::path &getFileName() const override;
//! returns how much was read
size_t read(void* buffer, size_t sizeToRead) override;
//! Get the type of the class implementing this interface
EREAD_FILE_TYPE getType() const override
{
return ERFT_READ_FILE;
}
//! changes position in file, returns true if successful
bool seek(long finalPos, bool relativeMovement = false) override;
//! create read file on disk.
static IReadFile *createReadFile(const io::path &fileName);
//! returns size of file
long getSize() const override;
private:
//! opens the file
void openFile();
//! returns if file is open
bool isOpen() const
{
return File != 0;
}
//! returns where in the file we are.
long getPos() const override;
//! returns name of file
const io::path& getFileName() const override;
//! Get the type of the class implementing this interface
EREAD_FILE_TYPE getType() const override
{
return ERFT_READ_FILE;
}
//! create read file on disk.
static IReadFile* createReadFile(const io::path& fileName);
private:
//! opens the file
void openFile();
FILE* File;
long FileSize;
io::path Filename;
};
FILE *File;
long FileSize;
io::path Filename;
};
} // end namespace io
} // end namespace irr