2014-06-27 16:18:56 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-06-27 16:18:56 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2015-01-01 12:39:27 -05:00
|
|
|
#include "core/file_sys/ivfc_archive.h"
|
2014-06-27 16:18:56 -04:00
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
/// File system interface to the RomFS archive
|
2015-01-01 12:39:27 -05:00
|
|
|
class Archive_RomFS final : public IVFCArchive {
|
2014-06-27 16:18:56 -04:00
|
|
|
public:
|
2014-07-04 13:11:09 -04:00
|
|
|
Archive_RomFS(const Loader::AppLoader& app_loader);
|
2014-06-27 16:18:56 -04:00
|
|
|
|
2014-12-14 23:44:04 -05:00
|
|
|
std::string GetName() const override { return "RomFS"; }
|
2015-01-01 12:39:27 -05:00
|
|
|
ResultCode Open(const Path& path) override { return RESULT_SUCCESS; }
|
2014-06-27 16:18:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|