Loader: Refactored use of const.
This commit is contained in:
parent
a8c4648520
commit
62b444cd17
6 changed files with 19 additions and 20 deletions
|
@ -15,14 +15,14 @@ namespace Loader {
|
|||
/// Loads an ELF/AXF file
|
||||
class AppLoader_ELF : public AppLoader {
|
||||
public:
|
||||
AppLoader_ELF(std::string& filename);
|
||||
AppLoader_ELF(const std::string& filename);
|
||||
~AppLoader_ELF();
|
||||
|
||||
/**
|
||||
* Load the bootable file
|
||||
* @return ResultStatus result of function
|
||||
*/
|
||||
const ResultStatus Load();
|
||||
ResultStatus Load();
|
||||
|
||||
private:
|
||||
std::string filename;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue