using System.IO;
namespace DiscUtils.Vfs
{
///
/// Delegate for instantiating a file system.
///
/// The stream containing the file system.
/// Optional, information about the volume the file system is on.
/// Parameters for the file system.
/// A file system implementation.
public delegate DiscFileSystem VfsFileSystemOpener(
Stream stream, VolumeInfo volumeInfo, FileSystemParameters parameters);
}