Loader: Refactored use of const.

This commit is contained in:
bunnei 2014-06-19 17:46:05 -04:00
parent a8c4648520
commit 62b444cd17
6 changed files with 19 additions and 20 deletions

View file

@ -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;