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

(cherry picked from commit b144e56b2c)
This commit is contained in:
Rubidium
2021-04-13 21:36:24 +02:00
committed by Jonathan G Rennison
parent 98e9a3991b
commit 4b37044ef1
2 changed files with 25 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;
}