loader: Expose program title.

This commit is contained in:
bunnei 2017-08-01 19:51:44 -04:00
parent 035716d57b
commit f5cf9960d9
3 changed files with 31 additions and 12 deletions

View file

@ -166,6 +166,15 @@ public:
return ResultStatus::ErrorNotImplemented;
}
/**
* Get the title of the application
* @param title Reference to store the application title into
* @return ResultStatus result of function
*/
virtual ResultStatus ReadTitle(std::string& title) {
return ResultStatus::ErrorNotImplemented;
}
protected:
FileUtil::IOFile file;
bool is_loaded = false;