Codechange: use the new RandomAccessFile as backend for the FIO slot functions

This commit is contained in:
Rubidium
2021-04-13 21:36:24 +02:00
committed by rubidium42
parent 8e0b1b5d1a
commit b144e56b2c
2 changed files with 24 additions and 89 deletions

View File

@@ -51,7 +51,7 @@ RandomAccessFile::~RandomAccessFile()
* Get the filename of the opened file with the path from the SubDirectory and the extension.
* @return Name of the file.
*/
const std::string& RandomAccessFile::GetFilename() const
const std::string &RandomAccessFile::GetFilename() const
{
return this->filename;
}
@@ -61,7 +61,7 @@ const std::string& RandomAccessFile::GetFilename() const
* file without the SubDirectory or extension in lower case.
* @return Name of the file.
*/
const std::string& RandomAccessFile::GetSimplifiedFilename() const
const std::string &RandomAccessFile::GetSimplifiedFilename() const
{
return this->simplified_filename;
}