Cleanup of some code

This commit is contained in:
2023-08-10 19:14:19 -07:00
parent 5ea312bc34
commit 8c9fa5fd8c
11 changed files with 138 additions and 3 deletions

View File

@ -160,6 +160,21 @@ namespace Dawn {
*/
void setPosition(size_t pos);
/**
* Get the file name of this file, optionally with the extension.
*
* @param withExtension If true, the extension will be included.
* @return The file name.
*/
std::string getFileName(bool_t withExtension = true);
/**
* Returns the extension of this file.
*
* @return The extension of this file.
*/
std::string getExtension();
/**
* Destruct the File manager.
*/