summaryrefslogblamecommitdiffstats
path: root/src/core/file_sys/sdmc_factory.h
blob: 245060690a34abbed78a0be56653d4c857db22c8 (plain) (tree)
1
2
3
4
5
6
7





                                            
                              




                                               
                   
       
                                         
 
                                 

        
                   


                      
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/file_sys/vfs.h"
#include "core/hle/result.h"

namespace FileSys {

/// File system interface to the SDCard archive
class SDMCFactory {
public:
    explicit SDMCFactory(VirtualDir dir);

    ResultVal<VirtualDir> Open();

private:
    VirtualDir dir;
};

} // namespace FileSys