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