mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Make fssrv interface adapters public
This commit is contained in:
parent
4d3a1418f6
commit
17b8bc5b62
4 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ using IDirectorySf = LibHac.FsSrv.Sf.IDirectory;
|
|||
|
||||
namespace LibHac.FsSrv.Impl
|
||||
{
|
||||
internal class DirectoryInterfaceAdapter : IDirectorySf
|
||||
public class DirectoryInterfaceAdapter : IDirectorySf
|
||||
{
|
||||
private ReferenceCountedDisposable<FileSystemInterfaceAdapter> ParentFs { get; }
|
||||
private IDirectory BaseDirectory { get; }
|
||||
|
|
|
@ -8,7 +8,7 @@ using IFileSf = LibHac.FsSrv.Sf.IFile;
|
|||
|
||||
namespace LibHac.FsSrv.Impl
|
||||
{
|
||||
internal class FileInterfaceAdapter : IFileSf
|
||||
public class FileInterfaceAdapter : IFileSf
|
||||
{
|
||||
private ReferenceCountedDisposable<FileSystemInterfaceAdapter> ParentFs { get; }
|
||||
private IFile BaseFile { get; }
|
||||
|
|
|
@ -12,7 +12,7 @@ using IDirectorySf = LibHac.FsSrv.Sf.IDirectory;
|
|||
|
||||
namespace LibHac.FsSrv.Impl
|
||||
{
|
||||
internal class FileSystemInterfaceAdapter : IFileSystemSf
|
||||
public class FileSystemInterfaceAdapter : IFileSystemSf
|
||||
{
|
||||
private ReferenceCountedDisposable<IFileSystem> BaseFileSystem { get; }
|
||||
private bool IsHostFsRoot { get; }
|
||||
|
|
|
@ -7,7 +7,7 @@ using IStorageSf = LibHac.FsSrv.Sf.IStorage;
|
|||
|
||||
namespace LibHac.FsSrv.Impl
|
||||
{
|
||||
internal class StorageInterfaceAdapter : IStorageSf
|
||||
public class StorageInterfaceAdapter : IStorageSf
|
||||
{
|
||||
private ReferenceCountedDisposable<IStorage> BaseStorage { get; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue