mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-25 19:44:43 +01:00
merge common implementations and server implementations
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace SharpCifs.Util.Sharpen
|
||||
{
|
||||
internal class ObjectInputStream : InputStream
|
||||
{
|
||||
private BinaryReader _reader;
|
||||
|
||||
public ObjectInputStream (InputStream s)
|
||||
{
|
||||
_reader = new BinaryReader (s.GetWrappedStream ());
|
||||
}
|
||||
|
||||
public int ReadInt ()
|
||||
{
|
||||
return _reader.ReadInt32 ();
|
||||
}
|
||||
|
||||
public object ReadObject ()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user