Make fssrv interface adapters public

This commit is contained in:
Alex Barney 2021-04-19 11:51:52 -07:00
parent 4d3a1418f6
commit 17b8bc5b62
4 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ using IDirectorySf = LibHac.FsSrv.Sf.IDirectory;
namespace LibHac.FsSrv.Impl namespace LibHac.FsSrv.Impl
{ {
internal class DirectoryInterfaceAdapter : IDirectorySf public class DirectoryInterfaceAdapter : IDirectorySf
{ {
private ReferenceCountedDisposable<FileSystemInterfaceAdapter> ParentFs { get; } private ReferenceCountedDisposable<FileSystemInterfaceAdapter> ParentFs { get; }
private IDirectory BaseDirectory { get; } private IDirectory BaseDirectory { get; }

View file

@ -8,7 +8,7 @@ using IFileSf = LibHac.FsSrv.Sf.IFile;
namespace LibHac.FsSrv.Impl namespace LibHac.FsSrv.Impl
{ {
internal class FileInterfaceAdapter : IFileSf public class FileInterfaceAdapter : IFileSf
{ {
private ReferenceCountedDisposable<FileSystemInterfaceAdapter> ParentFs { get; } private ReferenceCountedDisposable<FileSystemInterfaceAdapter> ParentFs { get; }
private IFile BaseFile { get; } private IFile BaseFile { get; }

View file

@ -12,7 +12,7 @@ using IDirectorySf = LibHac.FsSrv.Sf.IDirectory;
namespace LibHac.FsSrv.Impl namespace LibHac.FsSrv.Impl
{ {
internal class FileSystemInterfaceAdapter : IFileSystemSf public class FileSystemInterfaceAdapter : IFileSystemSf
{ {
private ReferenceCountedDisposable<IFileSystem> BaseFileSystem { get; } private ReferenceCountedDisposable<IFileSystem> BaseFileSystem { get; }
private bool IsHostFsRoot { get; } private bool IsHostFsRoot { get; }

View file

@ -7,7 +7,7 @@ using IStorageSf = LibHac.FsSrv.Sf.IStorage;
namespace LibHac.FsSrv.Impl namespace LibHac.FsSrv.Impl
{ {
internal class StorageInterfaceAdapter : IStorageSf public class StorageInterfaceAdapter : IStorageSf
{ {
private ReferenceCountedDisposable<IStorage> BaseStorage { get; } private ReferenceCountedDisposable<IStorage> BaseStorage { get; }