summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
blob: 09bec7fced4394634e3524f8991a158b8a889bd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <memory>
#include <string>
#include "common/common_types.h"
#include "core/file_sys/filesystem.h"
#include "core/hle/result.h"

namespace FileSys {

/// File system interface to the SDCard archive
class SDMCFactory {
public:
    explicit SDMCFactory(std::string sd_directory);

    ResultVal<std::unique_ptr<FileSystemBackend>> Open();

private:
    std::string sd_directory;
};

} // namespace FileSys