mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
14 lines
256 B
C#
14 lines
256 B
C#
namespace SharpCifs.Util.Sharpen
|
|
{
|
|
public class FileReader : InputStreamReader
|
|
{
|
|
//public FileReader (FilePath f) : base(f.GetPath ())
|
|
//{
|
|
//}
|
|
//path -> fileStream
|
|
public FileReader(InputStream s) : base(s)
|
|
{
|
|
}
|
|
}
|
|
}
|